body { 
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #f9f1e7;
    background: #0a0a0a;
    min-height: 100vh;
} 

.page-header { 
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.5);
} 

.page-header h1 { 
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff5c4;
} 

.page-header p { 
    margin: 5px 0;
    font-size: 1rem;
    color: #ffeaa0;
} 

.content { 
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
} 

section { 
    margin-bottom: 40px;
    background: rgba(0,0,0,0.15);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
} 

section h2 { 
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.5);
    padding-bottom: 5px;
} 

section p, section ul { 
    font-size: 1rem;
    color: #fff5c4;
} 

section ul { 
    list-style-type: disc;
    padding-left: 20px;
} 

section ul ul { 
    list-style-type: circle;
    padding-left: 20px;
} 

a { 
    color: #ffea85;
    text-decoration: underline;
} 

a:hover { 
    color: #fff;
}

/* LUXURY REDESIGN OVERRIDES */
:root {
    --fc-gold: #D4AF37;
    --fc-gold-light: #f6e4a2;
    --fc-ivory: #f8f3e7;
    --fc-muted: rgba(248, 243, 231, 0.7);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: #030303;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--fc-ivory);
    font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
    background:
        radial-gradient(circle at 18% 0%, rgba(212, 175, 55, 0.13), transparent 24rem),
        radial-gradient(circle at 88% 18%, rgba(246, 228, 162, 0.08), transparent 22rem),
        linear-gradient(145deg, #000 0%, #050505 52%, #11100c 100%);
}

.page-header {
    position: relative;
    overflow: hidden;
    min-height: 42vh;
    display: grid;
    align-content: center;
    padding: clamp(64px, 10vw, 120px) 20px clamp(46px, 7vw, 82px);
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.9)),
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.18), transparent 28rem);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    backdrop-filter: none;
}

.page-header::after {
    content: "";
    width: 86px;
    height: 1px;
    margin: 22px auto 0;
    background: var(--fc-gold);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.52);
}

.page-header h1,
section h2 {
    font-family: Didot, "Bodoni 72", "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: 0;
}

.page-header h1 {
    margin: 0 0 18px;
    color: var(--fc-ivory);
    font-size: clamp(3rem, 9vw, 6.6rem);
    line-height: 0.95;
}

.page-header p {
    max-width: 760px;
    margin: 4px auto;
    color: var(--fc-muted);
}

.content {
    width: min(100% - 32px, 980px);
    margin: clamp(34px, 7vw, 76px) auto;
    padding: 0;
}

section {
    margin: 0 0 18px;
    padding: clamp(22px, 4vw, 38px);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.16);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        rgba(9, 8, 6, 0.76);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

section h2 {
    margin: 0 0 16px;
    padding: 0;
    border: 0;
    color: var(--fc-ivory);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
}

section h2::after {
    content: "";
    display: block;
    width: 54px;
    height: 1px;
    margin-top: 14px;
    background: var(--fc-gold);
}

section p,
section ul {
    color: var(--fc-muted);
    line-height: 1.78;
}

a {
    color: var(--fc-gold-light);
    text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
    color: #fff;
}

::selection {
    background: var(--fc-gold);
    color: #050505;
}

@media (max-width: 700px) {
    .page-header {
        text-align: left;
        padding-inline: 18px;
    }

    .page-header::after {
        margin-left: 0;
    }

    .content {
        width: min(100% - 28px, 980px);
    }
}
