:root {
    --steel-dark: #1a2a3a;
    --steel-blue: #2d4a6f;
    --steel-mid: #4a6d8c;
    --steel-light: #6b8fad;
    --warm-accent: #d4a574;
    --warm-accent-hover: #c4956a;
    --cream: #f8f6f3;
    --white: #ffffff;
    --text-dark: #1a2a3a;
    --text-body: #3a4a5a;
    --border-light: #e0ddd8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--cream);
    color: var(--text-body);
    line-height: 1.7;
    font-size: 18px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--steel-dark) 0%, var(--steel-blue) 100%);
    color: var(--white);
    padding: 3rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: var(--warm-accent);
    color: var(--steel-dark);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.header-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.header-cta {
    display: inline-block;
    background: var(--warm-accent);
    color: var(--steel-dark);
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.header-cta:hover {
    background: var(--warm-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Hero Image */
.hero-image {
    margin: 2rem 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(26, 42, 58, 0.15);
}

.hero-image-placeholder {
    background: linear-gradient(135deg, var(--steel-mid) 0%, var(--steel-light) 100%);
    border-radius: 12px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
    text-align: center;
    box-shadow: 0 8px 32px rgba(26, 42, 58, 0.15);
}

.hero-image-placeholder small {
    opacity: 0.8;
    font-size: 0.85rem;
}

/* Main Content */
.main {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Info Card */
.info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 24px rgba(26, 42, 58, 0.08);
    border: 1px solid var(--border-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--steel-mid);
    margin-top: 2px;
}

.info-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--steel-mid);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.25rem;
}

.info-value {
    color: var(--text-dark);
    font-weight: 600;
}

/* Small note inside info-value (e.g., "Or by special appointment") */
.info-value-note {
    font-weight: 400;
    font-size: 0.9rem;
}

/* Sections */
.section {
    padding: 3rem 0;
}

.section-intro {
    padding-top: 3.5rem;
}

h2 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1.75rem;
    color: var(--steel-dark);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

p + p {
    margin-top: 1rem;
}

/* Support List */
.support-list {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    margin-top: 1.5rem;
    border: 1px solid var(--border-light);
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
}

.support-item:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
}

.check-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--steel-mid);
    margin-top: 2px;
}

.support-text {
    color: var(--text-dark);
}

.section-note {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(45, 74, 111, 0.05) 0%, rgba(107, 143, 173, 0.05) 100%);
    border-left: 3px solid var(--steel-mid);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-body);
}

/* Announcement Section */
.announcement-section {
    background: linear-gradient(135deg, #b8860b 0%, #d4a017 100%);
    color: var(--white);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(184, 134, 11, 0.2);
}

/* Modifier for stacked announcement sections */
.announcement-section + .announcement-section {
    margin-top: 2rem;
}

.announcement-content {
    position: relative;
    z-index: 1;
}

.announcement-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.announcement-section h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.announcement-section p {
    opacity: 0.95;
    font-size: 1.05rem;
    line-height: 1.6;
}

.session-group {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-top: 1.25rem;
}

.session-group-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.session-group-title svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.session-dates {
    font-size: 1rem;
    opacity: 0.95;
    padding-left: 1.85rem;
}

.session-dates span {
    display: block;
    padding: 0.15rem 0;
}

.session-time-note {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    opacity: 0.85;
    font-style: italic;
}

.session-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    overflow: hidden;
}

.session-table th {
    text-align: left;
    padding: 0.7rem 1rem;
    font-weight: 700;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.15);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.session-table td {
    padding: 0.55rem 1rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.session-table tr:last-child td {
    border-bottom: none;
}

/* Follow-up paragraph under the session table */
.session-table-followup {
    margin-top: 1.25rem;
}

/* Partnership Section */
.partnership-section {
    background: var(--white);
    margin: 2rem -1.5rem;
    padding: 3rem 1.5rem;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.partnership-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.contact-content h2 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1.75rem;
    color: var(--steel-dark);
    margin-bottom: 0.75rem;
}

.contact-content > p {
    margin-bottom: 1.5rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
}

.contact-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--steel-mid);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.25rem;
}

.contact-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--steel-dark);
    margin-bottom: 0.5rem;
}

.contact-email {
    color: var(--steel-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-email:hover {
    text-decoration: underline;
}

.contact-phone {
    color: var(--text-body);
    font-weight: 500;
    margin-top: 0.35rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--steel-dark) 0%, var(--steel-blue) 100%);
    color: var(--white);
    margin: 3rem -1.5rem 0;
    padding: 3.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--warm-accent);
    color: var(--steel-dark);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: var(--warm-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

.cta-note strong {
    color: var(--warm-accent);
}

/* Footer */
.footer {
    background: var(--steel-dark);
    color: var(--white);
    padding: 3rem 1.5rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 140px;
    width: auto;
    object-fit: contain;
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
}

.eo-logo {
    height: 140px;
    width: auto;
    object-fit: contain;
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
}

.funding-text {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.funding-text + .funding-text {
    padding-top: 0.75rem;
    border-top: none;
    margin-top: 0;
}

.footer-text {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 600px) {
    .header {
        padding: 2rem 1rem 3rem;
    }

    .info-card {
        padding: 1.5rem;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }

    .support-list {
        padding: 1.5rem;
    }

    .info-grid {
        gap: 1.25rem;
    }

    .cta-section,
    .partnership-section {
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .footer-logos {
        gap: 1.5rem;
    }

    .footer-logo,
    .eo-logo {
        height: 100px;
        padding: 16px 20px;
    }
}
