* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #0a0a0f;
    color: #c8c8d4;
    line-height: 1.8;
}

#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(10, 10, 15, 0.95);
    border-bottom: 1px solid #1e2030;
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-size: 1rem;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: uppercase;
}

.nav-brand a {
    color: #ffffff;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #9090a0;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #c8334a;
}

.page-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(200, 51, 74, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero .label {
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: #c8334a;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.page-hero h1 {
    font-size: 2.8rem;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(200, 51, 74, 0.2);
}

.page-hero .intro {
    font-size: 1.15rem;
    font-style: italic;
    color: #9090a0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 2rem 5rem;
}

.content h2 {
    font-size: 1.4rem;
    color: #c8334a;
    margin: 3rem 0 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-bottom: 1px solid #1e2030;
    padding-bottom: 0.8rem;
}

.content h3 {
    font-size: 1.1rem;
    color: #e0e0e8;
    margin: 2rem 0 1rem;
    letter-spacing: 1px;
}

.content p {
    margin-bottom: 1.3rem;
    font-size: 1.02rem;
}

.content strong {
    color: #c8334a;
}

.content em {
    color: #b0b0c0;
}

.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    font-size: 0.92rem;
}

.content th {
    text-align: left;
    padding: 0.8rem 1rem;
    background: rgba(200, 51, 74, 0.1);
    color: #c8334a;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid #c8334a;
}

.content td {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid #1e2030;
    color: #c8c8d4;
}

.content tr:hover td {
    background: rgba(200, 51, 74, 0.03);
}

.callout {
    border-left: 3px solid #c8334a;
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(200, 51, 74, 0.05);
    font-style: italic;
    color: #b0b0c0;
}

.callout.teaser {
    border-left-color: #3a7a8a;
    background: rgba(58, 122, 138, 0.05);
}

.callout strong {
    color: #e0e0e8;
    font-style: normal;
}

.content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.content ul li {
    padding: 0.3rem 0 0.3rem 1.5rem;
    position: relative;
}

.content ul li::before {
    content: '\2014';
    position: absolute;
    left: 0;
    color: #c8334a;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin: 1.5rem 0 2rem;
}

.card {
    border: 1px solid #1e2030;
    padding: 1.2rem;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: #c8334a;
    background: rgba(200, 51, 74, 0.03);
}

.card h4 {
    color: #c8334a;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.card p {
    font-size: 0.9rem;
    color: #9090a0;
    margin-bottom: 0;
}

.back-link {
    display: inline-block;
    margin: 3rem 0 1rem;
    padding: 0.6rem 2rem;
    border: 1px solid #c8334a;
    color: #c8334a;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #c8334a;
    color: #0a0a0f;
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #1e2030;
    color: #3a3a5a;
    font-size: 0.85rem;
}

.divider {
    width: 60px;
    height: 1px;
    background: #c8334a;
    margin: 2rem auto;
}

@media (max-width: 768px) {
    #navbar {
        padding: 1rem 1.5rem;
    }
    .nav-links {
        gap: 1rem;
    }
    .nav-links a {
        font-size: 0.7rem;
    }
    .page-hero h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    .page-hero .intro {
        font-size: 1rem;
    }
    .content {
        padding: 1.5rem 1.5rem 4rem;
    }
    .card-grid {
        grid-template-columns: 1fr;
    }
}
