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

body {
    font-family: Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf7f6;
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
}

/* Old fixed-header nav removed — using .header from styles.css */


main {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 30px 20px 20px;
    margin-bottom: 25px;
}

.hero-headline {
    font-size: 1.8em;
    font-weight: 700;
    color: #032149;
    margin-bottom: 12px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.05em;
    color: #555;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Sections */
section {
    background: #faf7f6;
    padding: 0;
    margin-bottom: 25px;
}

/* Dates Grid */
.dates-section {
    margin-bottom: 30px;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.date-card {
    background: #faf7f6;
    border-left: 4px solid #23a9c6;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.date-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.date-card.urgent {
    border-left-width: 6px;
}

/* Card icons (scoped to date cards to avoid conflict with priority-card icons) */
.date-card > .card-icon {
    margin-bottom: 12px;
}

.urgent-badge {
    display: inline-block;
    background: #ff4757;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Countdown */
.countdown {
    font-size: 1.8em;
    font-weight: 700;
    color: #ff4757;
    margin: 6px 0 8px;
    letter-spacing: 1px;
}

.date-value-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.urgent-cta-btn,
.urgent-cta-btn:visited,
.urgent-cta-btn:link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    background-color: #00e639 !important;
    border-radius: 50%;
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    border: none;
}

.urgent-cta-btn:hover {
    background-color: #00cc2f !important;
    transform: scale(1.1);
}

.date-label {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 6px;
}

.date-value {
    font-size: 1.2em;
    font-weight: 600;
    color: #032149;
}

.date-value-detail {
    font-size: 1.2em;
    font-weight: 400;
    color: #032149;
    line-height: 1.5;
    margin-bottom: 6px;
}

.date-value-detail strong {
    font-weight: 600;
}

.date-value-detail:last-child {
    margin-bottom: 0;
}

/* Collapsible Section */
.collapsible-section {
    margin-bottom: 30px;
    border: none;
    border-radius: 0;
    background: transparent;
}

.section-header {
    background: transparent;
    color: #032149;
    padding: 10px 0;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    transition: color 0.3s ease;
    border-bottom: 2px solid #23a9c6;
}

.section-header:hover {
    color: #032149;
}

.section-header h2 {
    margin: 0;
    font-size: 1.4em;
    font-weight: 600;
    grid-column: 1;
    grid-row: 1;
}

.section-teaser {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 0.9em;
    color: #777;
    margin-top: 4px;
    font-style: italic;
}

.toggle-icon {
    transition: transform 0.3s ease;
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    color: #23a9c6;
}

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

.section-content {
    display: none;
    padding: 0;
}

.section-content.open {
    display: block;
    padding: 20px 0;
}

/* Stat Cards */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    margin-top: 10px;
}

.stat-card {
    background: #fff;
    border-radius: 10px;
    padding: 18px 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-top: 3px solid #23a9c6;
}

.stat-number {
    font-size: 1.8em;
    font-weight: 700;
    color: #032149;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85em;
    color: #777;
    margin-top: 4px;
}


/* Float layout for text wrapping around image */
.about-content-float {
    margin-top: 30px;
}

.profile-photo.float-photo {
    float: left;
    width: 350px;
    margin: 0 30px 20px 0;
}

.about-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-content ul {
    color: #555;
    line-height: 1.7;
}

.profile-photo {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Lightbox — using styles.css lightbox rules */


/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #032149;
    transition: background 0.2s ease;
    gap: 12px;
}

.faq-question:hover {
    background: rgba(35, 169, 198, 0.05);
}

.faq-toggle {
    font-size: 1.4em;
    font-weight: 300;
    color: #23a9c6;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 16px;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95em;
}

/* Footer styles removed — using styles.css footer instead */

/* Responsive */
@media (max-width: 992px) {
    .dates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 0;
        padding-bottom: 0;
    }

    main {
        padding: 20px 15px;
    }

    .hero-section {
        padding: 20px 10px 15px;
    }

    .hero-headline {
        font-size: 1.4em;
    }

    .hero-subtitle {
        font-size: 0.95em;
    }

    .dates-grid {
        grid-template-columns: 1fr;
    }

    /* Condense blocks 2+3 on mobile */
    .dates-grid .date-card:nth-child(2),
    .dates-grid .date-card:nth-child(3) {
        padding: 15px;
    }

.profile-photo.float-photo {
        float: none;
        display: block;
        width: 80%;
        max-width: 350px;
        margin: 0 auto 20px auto;
    }

    .stat-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-number {
        font-size: 1.5em;
    }

    .section-content.open {
        padding: 15px 0;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .footer-actions {
        justify-content: center;
    }


}

@media (max-width: 480px) {
    body {
        padding-top: 0;
    }

    .hero-headline {
        font-size: 1.2em;
    }

    .section-header h2 {
        font-size: 1.2em;
    }

    .intro-text {
        font-size: 0.95em;
        padding: 15px;
    }

    .date-card {
        padding: 15px;
    }

    .date-label {
        font-size: 0.85em;
    }

    .date-value,
    .date-value-detail {
        font-size: 1.1em;
    }

    .stat-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 1.3em;
    }

    .stat-label {
        font-size: 0.8em;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 0.95em;
    }
}
