:root {
    --primary-color: #1A365D;
    --secondary-color: #2D3748;
    --accent-color: #F6AD55;
    --accent-hover: #ED8936;
    --white: #FFFFFF;
    --bg-color: #F7FAFC;
    --text-muted: #718096;
    --border-color: #E2E8F0;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Hero Section */
.hero-image {
    position: relative;
    width: 100%;
    min-height: 400px;
    aspect-ratio: 2600 / 1286;
    max-height: 80vh;
    background-image: url('./tiburon.jpeg');
    background-size: 100% 100%;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 54, 93, 0.6) 0%,
        rgba(26, 54, 93, 0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--accent-color);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Main Container */
.container {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styling */
section {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border-top: 4px solid var(--primary-color);
}

.section-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.section-description {
    font-size: 1.1rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mission Section */
.mission-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.mission-text strong {
    color: var(--primary-color);
}

/* Approach Grid (Our Approach + Neutrality Statement) */
.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.approach-card {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: 8px;
}

.approach-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.approach-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.approach-card ul li {
    font-size: 0.95rem;
    color: var(--secondary-color);
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.approach-card ul li::before {
    content: "›";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.approach-card ul li strong {
    color: var(--primary-color);
}

.do-card {
    border-left: 4px solid var(--accent-color);
}

.disclaimer-card {
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05), rgba(26, 54, 93, 0.02));
}

.disclaimer-card p {
    font-size: 0.95rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Governance Reform Roadmap - Phase Cards */
.phases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.phase-card {
    background-color: var(--bg-color);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.phase-header {
    background: var(--primary-color);
    padding: 1rem 1.25rem;
}

.phase-number {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.phase-header h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1.3;
}

.phase-content {
    padding: 1.25rem;
}

.phase-focus {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.phase-focus strong {
    color: var(--primary-color);
}

.phase-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.phase-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.term {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--secondary-color);
}

/* Standards of Review Table */
.standards-table-container {
    overflow-x: auto;
}

.standards-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.standards-table th {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
}

.standards-table th:first-child {
    border-radius: 8px 0 0 0;
}

.standards-table th:last-child {
    border-radius: 0 8px 0 0;
}

.standards-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

.standards-table tbody tr:nth-child(even) {
    background-color: var(--bg-color);
}

.standards-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 8px;
}

.standards-table tbody tr:last-child td:last-child {
    border-radius: 0 0 8px 0;
}

.standards-table td:first-child {
    background: rgba(26, 54, 93, 0.03);
    font-weight: 500;
}

.standards-table td:last-child {
    color: var(--text-muted);
    font-style: italic;
}

/* Documentation/Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.resource-card {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.resource-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.resource-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Join Section (Form) */
.signup-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-row input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-primary {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #2A4365;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
}

/* Support/Donate Section */
.donate-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2A4365 100%);
    border-top: 4px solid var(--accent-color);
}

.donate-section .section-title {
    color: var(--white);
}

.donate-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.btn-donate {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.btn-donate:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* What We Stand For — Principles Section */
.thesis-statement {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.15rem;
    color: var(--primary-color);
    text-align: center;
    max-width: 750px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.8;
    font-weight: 400;
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    text-align: left;
}

.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.principle-card {
    background: var(--bg-color);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    position: relative;
    transition: box-shadow 0.2s ease;
}

.principle-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.principle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.principle-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.principle-card p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

.principles-closer {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
    padding-top: 1.5rem;
    border-top: 2px solid var(--accent-color);
    max-width: 650px;
    margin: 0 auto;
}

/* Why This Matters Now — Spotlight Section */
.spotlight-section {
    border-top: 4px solid var(--accent-color) !important;
}

.spotlight-alert {
    background: linear-gradient(135deg, rgba(246, 173, 85, 0.08), rgba(246, 173, 85, 0.03));
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
}

.alert-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.spotlight-alert p {
    font-size: 1rem;
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.spotlight-link, .cta-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
    transition: color 0.2s ease;
}

.spotlight-link:hover, .cta-link:hover {
    color: var(--accent-hover);
}

.comparison-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.comparison-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-table-wrap {
    overflow-x: auto;
    margin-bottom: 2.5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead th {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
}

.comparison-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
    line-height: 1.5;
}

.comparison-table td:first-child {
    width: 140px;
    white-space: nowrap;
}

.good-cell {
    background: rgba(72, 187, 120, 0.06);
}

.concern-cell {
    background: rgba(245, 101, 101, 0.06);
}

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

.actions-block {
    margin-top: 2rem;
}

.actions-block h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.15rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.action-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.action-card {
    background: var(--bg-color);
    border-radius: 8px;
    padding: 1.5rem;
    border-top: 3px solid var(--primary-color);
}

.action-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.action-card h4 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
}

.action-card p {
    font-size: 0.85rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Get Involved — CTA Ladder */
.involved-section {
    border-top: 4px solid var(--primary-color) !important;
}

.cta-ladder {
    max-width: 700px;
    margin: 0 auto;
}

.cta-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cta-step:last-child {
    border-bottom: none;
}

.cta-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.cta-step-content h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.cta-step-content p {
    font-size: 0.95rem;
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Responsive — new sections */
@media (max-width: 900px) {
    .principles-grid,
    .action-cards {
        grid-template-columns: 1fr;
    }
    .resources-grid[style*="grid-template-columns: repeat(4"] {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 600px) {
    .resources-grid[style*="grid-template-columns: repeat(4"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .thesis-statement {
        font-size: 1.05rem;
    }

    .cta-step {
        flex-direction: column;
        gap: 0.75rem;
    }

    .comparison-table td:first-child {
        white-space: normal;
    }
}

/* Meeting Watch header box */
.mw-header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--accent-color);
    border-radius: 12px;
    padding: 1.75rem 2.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    gap: 2rem;
}

.mw-header-left {
    flex: 1;
}

.mw-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}

.mw-blurb {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.mw-header-right {
    flex-shrink: 0;
    text-align: right;
    font-size: 0.85rem;
    color: var(--secondary-color);
    line-height: 1.8;
}

.mw-feed-line {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.mw-checked-line strong {
    color: var(--primary-color);
}

.mw-freq-line {
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 768px) {
    .mw-header-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    .mw-header-right {
        text-align: center;
    }
    .mw-feed-line {
        justify-content: center;
    }
}

/* iCOP Accent Bar */
.icop-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary-color);
    padding: 10px 24px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.icop-bar-label {
    white-space: nowrap;
}

.icop-name {
    color: var(--accent-color);
}

.icop-bar-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

.icop-bar-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
}

.icop-bar-link {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--accent-color);
    padding: 4px 14px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.icop-bar-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

@media (max-width: 768px) {
    .icop-bar {
        flex-wrap: wrap;
        gap: 8px;
        text-align: center;
        padding: 12px 16px;
    }
    .icop-bar-divider {
        display: none;
    }
}

/* iCOP Alert */
.icop-alert {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 0 8px 8px 0;
    padding: 18px 22px;
    margin-bottom: 1.25rem;
}

.icop-alert-high {
    border-left-color: #e53e3e;
    background: linear-gradient(135deg, rgba(229,62,62,0.04), rgba(247,250,252,1));
}

.icop-alert-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.icop-alert-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-color);
    background: var(--primary-color);
    padding: 4px 12px;
    border-radius: 50px;
}

.icop-alert-high .icop-alert-badge {
    color: var(--accent-color);
    background: var(--primary-color);
}

.icop-alert-date {
    font-size: 11px;
    color: var(--text-muted);
}

.icop-alert-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.icop-alert-high .icop-alert-title {
    color: #c53030;
}

.icop-alert-text {
    font-size: 0.9rem;
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 10px;
}

.icop-alert-footer {
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
}

/* Pending comment button */
.btn-pending-comment {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(246, 173, 85, 0.35);
}

.btn-pending-comment:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(246, 173, 85, 0.45);
}

/* How It Works button */
.btn-how-it-works {
    display: inline-block;
    padding: 12px 28px;
    background: var(--bg-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-how-it-works:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Comment button on agenda items */
.comment-btn {
    flex-shrink: 0;
    padding: 4px 12px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
    margin-left: auto;
}

.comment-btn:hover {
    background: #2A4365;
}

/* Footer */
footer {
    text-align: left;
    padding: 3rem 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-main strong {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.footer-main p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    line-height: 1.6;
}

.footer-disclaimer {
    font-style: italic;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    margin-top: 0.75rem;
}

.footer-meta {
    text-align: right;
}

.footer-meta p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-tags {
    margin-top: 0.75rem;
}

.footer-tags span {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.7rem;
    color: var(--primary-color);
    margin-left: 0.5rem;
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 900px) {
    .phases-grid,
    .resources-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-meta {
        text-align: center;
    }

    .footer-tags span {
        margin: 0.25rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-image {
        min-height: 300px;
        aspect-ratio: 2600 / 1286;
        max-height: 50vh;
    }

    section {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .form-row {
        flex-direction: column;
    }

    .standards-table {
        font-size: 0.8rem;
    }

    .standards-table th,
    .standards-table td {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .mission-text {
        font-size: 1.05rem;
    }

    .phase-header h3 {
        font-size: 1rem;
    }
}
