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

:root {
    --navy: #1A2744;
    --navy-light: #243460;
    --cream: #F5F0E8;
    --gold: #C9A84C;
    --gold-light: #e0c06e;
    --white: #FFFFFF;
    --text-dark: #2c2c2c;
    --text-muted: #666;
    --border-radius: 4px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* ─── HEADER ─── */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--navy);
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    border-bottom: 1px solid rgba(201,168,76,0.3);
}

.header-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    color: var(--white);
    line-height: 1.3;
    max-width: 180px;
}

nav { display: flex; align-items: center; gap: 8px; }

nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--border-radius);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

nav a:hover { color: var(--gold); background: rgba(201,168,76,0.08); }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--navy);
    padding: 16px 24px;
    border-top: 1px solid rgba(201,168,76,0.2);
    z-index: 999;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav.open { display: flex; }
.mobile-nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 10px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color var(--transition);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }

/* ─── HERO ─── */
#hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 600px at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
        linear-gradient(180deg, rgba(201,168,76,0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Decorative lines */
#hero::after {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.5));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 20px;
    margin-bottom: 40px;
}

.hero-title-wrapper {
    position: relative;
    display: inline-block;
}

.hero-anniversary-logo {
    position: absolute;
    top: -60px;
    left: -120px;
    width: 120px;
    height: auto;
    object-fit: contain;
}

.hero-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 8px;
}

.hero-title .x-symbol {
    color: var(--gold);
    font-style: italic;
}

.hero-years {
    font-family: 'EB Garamond', serif;
    font-size: clamp(22px, 4vw, 40px);
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 28px;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 48px;
    font-weight: 300;
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.hero-meta-item svg { color: var(--gold); flex-shrink: 0; }

.hero-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.2);
}

.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 44px;
    transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.3);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ─── ABOUT ─── */
#about {
    background: var(--cream);
    padding: 100px 24px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 600;
}

.section-divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.about-description p { margin-bottom: 16px; }

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--white);
    border-left: 3px solid var(--gold);
    padding: 24px 20px;
}

.stat-number {
    font-family: 'EB Garamond', serif;
    font-size: 42px;
    color: var(--navy);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: 500;
}

/* ─── PROGRAM ─── */
#program {
    background: var(--navy);
    padding: 100px 24px;
}

#program .section-title { color: var(--white); }
#program .section-label { color: var(--gold); }

.timeline {
    position: relative;
    margin-top: 56px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0; bottom: 0;
    width: 1px;
    background: rgba(201,168,76,0.25);
}

.timeline-item {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    position: relative;
}

.timeline-time {
    width: 100px;
    flex-shrink: 0;
    padding: 20px 20px 20px 0;
    text-align: right;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
    padding-top: 22px;
}

.timeline-dot {
    width: 0;
    position: relative;
    flex-shrink: 0;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 24px;
    width: 11px;
    height: 11px;
    background: var(--gold);
    border-radius: 50%;
    border: 2px solid var(--navy);
    box-shadow: 0 0 0 2px var(--gold);
}

.timeline-content {
    flex: 1;
    padding: 16px 0 16px 32px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.timeline-item:last-child .timeline-content { border-bottom: none; }

.timeline-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.timeline-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* Sessions accordion */
.sessions-title {
    font-family: 'EB Garamond', serif;
    font-size: 24px;
    color: var(--white);
    margin: 56px 0 24px;
    padding-top: 40px;
    border-top: 1px solid rgba(201,168,76,0.2);
}

.accordion-item {
    border: 1px solid rgba(201,168,76,0.2);
    margin-bottom: 8px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    background: rgba(255,255,255,0.03);
    transition: background var(--transition);
    gap: 16px;
}

.accordion-header:hover { background: rgba(201,168,76,0.06); }

.accordion-header-text {
    display: flex;
    align-items: center;
    gap: 16px;
}

.accordion-num {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.12em;
    flex-shrink: 0;
}

.accordion-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gold);
    transition: transform var(--transition);
}

.accordion-item.open .accordion-icon { transform: rotate(45deg); }

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-body-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    border-top: 1px solid rgba(201,168,76,0.1);
    padding-top: 16px;
}

/* ─── SESSION ACCORDION CONTENT ─── */
.session-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(201,168,76,0.12);
}

.session-meta-divider {
    color: rgba(201,168,76,0.3);
}

.session-block-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 20px 0 12px;
    opacity: 0.7;
}

.session-block-title:first-of-type { margin-top: 0; }

.session-speakers {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.session-speakers li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 12px;
    border-left: 2px solid rgba(201,168,76,0.25);
}

.session-speakers--young li {
    border-left-color: rgba(255,255,255,0.12);
}

@media (max-width: 767px) {
    .session-meta { flex-direction: column; gap: 4px; }
    .session-meta-divider { display: none; }
}

/* ─── PLENARY DROPDOWN ─── */
.timeline-toggle {
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--gold-light);
    transition: color var(--transition);
}

.timeline-toggle:hover { color: var(--gold); }

.timeline-toggle-icon {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--gold);
    transition: transform var(--transition);
}

.timeline-toggle.open .timeline-toggle-icon {
    transform: rotate(180deg);
}

.timeline-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.timeline-dropdown.open {
    max-height: 800px;
}

.plenary-speakers {
    list-style: none;
    margin-top: 16px;
    border-top: 1px solid rgba(201,168,76,0.15);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plenary-speakers li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 12px;
    border-left: 2px solid rgba(201,168,76,0.3);
}

.speaker-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
}

.speaker-role {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.speaker-topic {
    font-size: 13px;
    color: var(--gold);
    font-style: italic;
    margin-top: 2px;
    opacity: 0.85;
}

/* ─── INFO LETTER ─── */
#info-letter {
    background: var(--cream);
    padding: 80px 24px;
    text-align: center;
}

#info-letter .section-divider { margin: 0 auto 32px; }

.letter-desc {
    font-size: 16px;
    color: #555;
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--navy);
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 36px;
    transition: background var(--transition), color var(--transition);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

/* ─── REGISTRATION ─── */
#registration {
    background: var(--cream);
    padding: 100px 24px;
}

#registration .section-inner {
    max-width: 780px;
}

.registration-deadline {
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    margin: 24px 0 32px;
    padding: 16px 24px;
    background: rgba(201, 168, 76, 0.1);
    border-left: 4px solid var(--gold);
    border-radius: 4px;
}

.form-wrapper {
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.35);
    padding: 48px 48px;
    position: relative;
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
}

.form-section-title {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    color: var(--navy);
    font-weight: 600;
    margin: 28px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.form-section-title:first-of-type { margin-top: 0; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #555;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
    appearance: none;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--gold);
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-submit { margin-top: 28px; }

.btn-submit {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--transition), opacity var(--transition);
}

.btn-submit:hover { background: var(--navy-light); }

.btn-submit:disabled {
    background: #a0a0a0;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}

.form-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
    text-align: center;
    line-height: 1.5;
}

.docs-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

@media (max-width: 767px) {
    .docs-buttons { flex-direction: column; align-items: center; }
    .docs-buttons .btn-outline { width: 100%; justify-content: center; }
}

/* Success screen */
#form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-title {
    font-family: 'EB Garamond', serif;
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 12px;
}

.success-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

#form-message {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
}

/* ─── PARTNERS ─── */
#partners {
    background: var(--navy);
    padding: 100px 24px;
}

#partners .section-title { color: var(--white); }
#partners .section-label { color: var(--gold); }

.organizer-section {
    text-align: center;
    margin-bottom: 64px;
}

.organizer-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 28px;
}

.organizer-logo {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    color: var(--white);
    text-decoration: none;
}

.organizer-logo-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex-shrink: 0;
}

.organizer-logo-img.minobr {
    width: 270px;
    /* height: 270px; */
}

.organizer-logo-x {
    font-family: 'EB Garamond', serif;
    font-size: 28px;
    color: var(--gold);
    font-style: italic;
    line-height: 1;
}

.organizer-logo-text {
    text-align: left;
}

.organizer-logo-text .line1 {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
    line-height: 1.3;
}

.organizer-logo-text .line2 {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.partners-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 48px;
}

.partners-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    text-align: center;
    margin-bottom: 36px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px 48px;
    justify-items: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 12px 20px;
}

.partner-item img {
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
    transition: transform var(--transition);
}

.partner-item:hover img {
    transform: scale(1.05);
}

/* Fallback text for logo placeholders */
.partner-name {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-align: center;
    letter-spacing: 0.02em;
}

/* ─── FOOTER ─── */
footer {
    background: #111d36;
    padding: 32px 24px;
    text-align: center;
    border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-text {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.footer-contact a {
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
    opacity: 0.8;
    transition: opacity var(--transition);
}

.footer-contact a:hover { opacity: 1; }

/* ─── SCROLL ANIMATIONS ─── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1199px) {
    header { padding: 0 24px; }
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .timeline::before { left: 70px; }
    .timeline-time { width: 70px; font-size: 12px; }
}

@media (max-width: 767px) {
    nav { display: none; }
    .burger { display: flex; }

    #hero { padding: 100px 20px 80px; }
    #about, #program, #info-letter, #registration, #partners { padding: 72px 20px; }

    .hero-meta { gap: 16px; }
    .hero-divider { display: none; }

    .about-stats { grid-template-columns: 1fr 1fr; }

    .timeline::before { display: none; }
    .timeline { margin-top: 32px; }
    .timeline-item { flex-direction: column; gap: 4px; }
    .timeline-time { width: auto; text-align: left; padding: 16px 0 0; font-size: 13px; }
    .timeline-dot { display: none; }
    .timeline-content { padding: 4px 0 16px; border-bottom: 1px solid rgba(255,255,255,0.07); }

    .form-wrapper { padding: 28px 20px; }
    .form-grid { grid-template-columns: 1fr; }

    .organizer-logo { flex-direction: column; text-align: center; }
    .organizer-logo-text { text-align: center; }

    .partners-grid { gap: 8px; }
    .partner-item { min-width: calc(33% - 6px); padding: 12px 16px; }

    .footer-inner { flex-direction: column; text-align: center; }

    .hero-anniversary-logo {
        position: static;
        display: block;
        margin: 0 auto 10px;
        width: 130px;
    }

    .hero-title-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .partner-item { min-width: calc(50% - 4px); }
    .about-stats { grid-template-columns: 1fr; }
}

/* ─── CONSENT MODAL ─── */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 8px;
    max-width: 650px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h3 {
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    color: var(--navy);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
}

.modal-close:hover {
    color: var(--navy);
}

.modal-body {
    padding: 24px;
}

.modal-body p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.modal-body ul {
    margin: 10px 0 14px 20px;
}

.modal-body li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 6px;
}