@font-face {
    font-family: 'SolomonSansBlackItalic';
    src: url('resources/SolomonSansBlackItalic.otf') format('opentype');
}



/* --- 1. VARIABLES (Control Center) --- */
:root {
    /* Colors - Base */
    --bg-color: #f9f9f9;
    --header-bg: #ffffff;
    --text-color: #111111;
    --footer-bg: #2c3e50;
    --footer-text: #ffffff;

    /* Colors - Neutral Grays (light to dark) */
    --color-white: #ffffff;
    --color-gray-lightest: #fafafa;
    --color-gray-lighter: #f5f5f5;
    --color-gray-light: #eeeeee;
    --color-gray: #cccccc;
    --color-gray-medium: #999999;
    --color-gray-dark: #666666;
    --color-gray-darker: #555555;

    /* Colors - Accent */
    --color-accent: #f0c419;
    --color-accent-light: #f4d03f;
    --color-volunteer: #27ae60;
    --color-volunteer-hover: #219a52;
    --color-primary: #7a0000;

    /* Button Colors */
    --btn-primary: #e0e0e0;
    --btn-primary-text: #000000;
    --action-join-bg: #7a0000;
    --action-join-text: #ffffff;
    --action-donate-bg: #7a0000;
    --action-donate-text: #ffffff;

    /* Spacing Scale */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;
    --spacing-2xl: 40px;
    --spacing-3xl: 60px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 5px;
    --radius-lg: 8px;
    --radius-xl: 10px;
    --radius-2xl: 12px;

    /* Sizing */
    --header-height: 80px;
    --page-padding: 5%;

    /* Transitions */
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.4s;

    /* Z-Indices */
    --z-header: 1000;
    --z-overlay: 1001;
    --z-mobile-menu: 1002;
}

/* --- 2. GLOBAL RESET --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'DM Serif Display', serif;

    /* Clean font */
    background-color: var(--bg-color);
    color: var(--text-color);
    padding-top: var(--header-height);

    /* Push content down so header doesn't hide it */

    /* Flex layout to prevent whitespace below footer */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- 3. HEADER (Sticky) --- */
.sticky-header {
    position: fixed;

    /* Locks it to the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--header-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: var(--z-header);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-placeholder {
    width: 120px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 10px;
}

.nav-btn {
    background-color: var(--btn-primary);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

.header-right {
    display: flex;
    gap: 15px;
}

/* Shared Button Styles */
.action-btn {
    padding: 10px 10px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: transform var(--transition-fast);
}

.action-btn:hover {
    transform: translateY(-2px);
}

.join-btn {
    background-color: var(--action-join-bg);
    color: var(--action-join-text);
}

.donate-btn {
    background-color: var(--action-donate-bg);
    color: var(--action-donate-text);
}

/* --- 4. MAIN SECTIONS --- */
/* Hero Section */
.hero-section {
    width: 100%;
    /* Scale height with image aspect ratio (4762/4000 ≈ 1.19), capped at 120vh */
    height: min(160vh, calc(100vw * 1.17));

    background-image: url('resources/SolomonCityHallwBackground.webp');
    background-size: 100% auto;
    background-position: bottom;
    background-repeat: no-repeat;
    position: relative;
    bottom: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero-overlay {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.0);

    /* See-through box for text readability */
    padding: 40px;
    border-radius: 10px;
}

.hero-slogan {
    font-family: 'SolomonSansBlackItalic', sans-serif;
    font-size: 5rem;
    color: var(--color-white);
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.action-btn.big {
    font-size: 1.2rem;
    padding: 15px 30px;
}

/* General Section Styles */
.content-section {
    padding: var(--spacing-2xl) var(--page-padding);
    border-bottom: 1px solid var(--color-gray-light);
}

.section-label {
    text-transform: uppercase;
    color: var(--color-gray-dark);
    margin-bottom: var(--spacing-lg);
    font-size: 1.5rem;
    border-bottom: 2px solid var(--color-gray);
    display: inline-block;
}

.section-label-large {
    font-size: 4rem;
}

.section-label-red {
    color: var(--color-primary);
}

.slightly-large {
    font-size: 1.5rem;
}

.section-label-center {
    text-align: center;
    width: 100%;
}

/* Story Section */
.story-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.story-text {
    flex: 1;
    font-size: 1.2rem;
    line-height: 1.6;
}

.story-media {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 9/16;

    /* Reel format */
    max-width: 300px;
    background-color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 3rem;
    border-radius: 10px;
}

.caption {
    margin-top: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    transform: rotate(-5deg);

    /* Playful tilt like sketch */
}

/* Policy Section */
.policy-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.policy-card {
    flex: 1;
    height: 150px;
    background-color: var(--color-gray);
    border: 2px solid var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color var(--transition-normal);
}

.policy-card:hover {
    background-color: var(--color-gray);
}

.policy-card.transit-card {
    background-color: transparent;
}

.policy-card.transit-card:hover {
    background-color: transparent;
}

.policy-card.transit-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Endorsements Section */
.endorsements-scroller {
    display: flex;
    overflow-x: auto;

    /* Enables horizontal scrolling */
    gap: 20px;
    padding-bottom: 20px;

    /* Space for scrollbar */
}

.endorsement-card {
    flex: 0 0 auto;

    /* Don't shrink */
    width: 150px;
    height: 200px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--color-gray-medium);
}

.endorsement-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* --- 5. FOOTER --- */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 40px var(--page-padding);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5px;
}

.logo-placeholder.big {
    width: 200px;
    height: 100px;
    padding-right: 20px;
}

.footer-links-section {
    display: flex;
    gap: 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    border-bottom: 1px solid var(--color-gray-dark);
    padding-bottom: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
}

.footer-col a {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-col a:hover {
    opacity: 1;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 15px;
    font-size: 1.2rem;
}

.footer-actions {
    display: flex;
    gap: 15px;
}

/* --- 6. HAMBURGER MENU --- */
.hamburger-btn {
    display: none;

    /* Hidden by default, shown on mobile */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: var(--z-overlay);
}

.hamburger-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all var(--transition-normal) ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* --- 7. MOBILE MENU --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;

    /* Off screen by default */
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--header-bg);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: var(--z-mobile-menu);
    transition: right var(--transition-normal) ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--color-gray-light);
}

.close-btn {
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    padding: 12px 15px;
    background-color: var(--btn-primary);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color var(--transition-fast);
}

.mobile-nav-link:hover {
    background-color: var(--color-gray);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

/* Mobile Menu Overlay (darkens background) */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: var(--z-overlay);
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

/* --- 8. RESPONSIVE STYLES --- */
/* NOTE: The breakpoint 800px must match MOBILE_BREAKPOINT in config.js */
@media (max-width: 800px) {

    /* Header: Hide desktop nav and show hamburger */
    .desktop-nav {
        display: none;
    }

    .desktop-actions {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    /* Reduce header padding on mobile */
    .sticky-header {
        padding: 0 1rem;
    }

    /* Hero section adjustments */
    .hero-section {
        height: 100vh;
        background-size: cover;
        background-position: bottom;
    }

    .hero-slogan {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: center;
    }

    /* Story section: stack vertically */
    .story-container {
        flex-direction: column;
    }

    .story-media {
        width: 100%;
    }

    /* Video placeholder: wider and watchable on mobile */
    .video-placeholder {
        max-width: 80%;
        width: 80%;
    }

    /* Policy cards: stack vertically */
    .policy-grid {
        flex-direction: column;
        align-items: center;
    }

    .policy-card {
        width: 75%;
        height: 300px;
    }

    /* Footer: Mobile layout */
    .footer-container {
        flex-direction: row;
        gap: 15px;
        align-items: center;
    }

    .footer-logo-section {
        display: none;

        /* Hide logo on mobile */
    }

    .footer-links-section {
        flex-direction: column;
        gap: 15px;
        flex: 1;
    }

    .footer-col {
        border: 1px solid var(--color-gray-darker);
        border-radius: var(--radius-md);
        padding: var(--spacing-sm);
    }

    .footer-col-header {
        cursor: pointer;
        user-select: none;
        position: relative;
        padding-right: 25px;
    }

    .footer-col-header::after {
        content: '\25BC';

        /* Down arrow */
        position: absolute;
        right: 0;
        font-size: 0.8rem;
        transition: transform var(--transition-normal) ease;
    }

    .footer-col.collapsed .footer-col-header::after {
        transform: rotate(-90deg);

        /* Right arrow when collapsed */
    }

    .footer-col-content {
        max-height: 500px;
        overflow: hidden;
        transition: max-height var(--transition-normal) ease, opacity var(--transition-normal) ease, margin-top var(--transition-normal) ease;
        margin-top: 10px;
        opacity: 1;
    }

    .footer-col.collapsed .footer-col-content {
        max-height: 0;
        opacity: 0;
        margin-top: 0;
    }

    .footer-actions {
        flex-direction: column;
        gap: 15px;
        flex-shrink: 0;
        width: auto;
        min-width: 120px;
    }

    /* Ensure full width buttons on very small screens */
    @media (max-width: 450px) {
        .footer-container {
            align-items: center;
        }

        .footer-actions {
            max-width: 100%;
        }
    }
}

/* --- 9. ABOUT PAGE STYLES --- */
/* About Hero Section */
.about-hero-section {
    width: 100%;
    height: 40vh;
    background-image: url('https://via.placeholder.com/1920x600');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-overlay {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 30px 60px;
    border-radius: 10px;
}

.about-slogan {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-color);
}

/* Timeline/Subway Section */
.timeline-section {
    padding: 60px var(--page-padding);
    background-color: var(--bg-color);
}

.timeline-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.timeline-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--text-color);
    background-color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-normal) ease;
    flex-shrink: 0;
}

.timeline-arrow:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.1);
}

.timeline-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.timeline-arrow:disabled:hover {
    background-color: var(--color-white);
    border-color: var(--text-color);
    transform: none;
}

.subway-line-wrapper {
    flex: 1;
    max-width: 800px;
    overflow: hidden;
}

.subway-line {
    position: relative;
    padding: 30px 0;
}

.subway-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(to right, var(--color-accent), var(--color-accent-light));
    border-radius: 6px;
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(240, 196, 25, 0.4);
}

.subway-stations {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.station {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: transform var(--transition-normal) ease;
}

.station:hover {
    transform: scale(1.15);
}

.station-dot {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 4px solid var(--text-color);
    transition: all var(--transition-normal) ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.station.active .station-dot {
    width: 36px;
    height: 36px;
    background-color: var(--color-accent);
    border-color: var(--text-color);
    box-shadow: 0 0 0 4px rgba(240, 196, 25, 0.3), 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Timeline Cards */
.timeline-cards-container {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.timeline-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.timeline-card {
    display: none;
    flex-direction: column;
    background-color: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-slow) ease;
}

.timeline-card.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.timeline-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.timeline-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal) ease;
}

.timeline-card:hover .timeline-card-image img {
    transform: scale(1.05);
}

.timeline-card-content {
    padding: 25px;
}

.timeline-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-color);
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 8px;
    display: inline-block;
}

.timeline-card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-darker);
}

/* Timeline Responsive */
@media (max-width: 800px) {
    .about-slogan {
        font-size: 1.8rem;
    }

    .about-hero-overlay {
        padding: 20px 30px;
        margin: 0 20px;
    }

    .timeline-container {
        gap: 10px;
    }

    .timeline-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .station-dot {
        width: 20px;
        height: 20px;
        border-width: 3px;
    }

    .station.active .station-dot {
        width: 28px;
        height: 28px;
    }

    .subway-track {
        height: 8px;
    }

    .timeline-card-content {
        padding: 20px;
    }

    .timeline-card-content h3 {
        font-size: 1.2rem;
    }
}

/* --- 10. NEWS PAGE STYLES --- */
.news-section {
    padding: 60px var(--page-padding);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-normal) ease, box-shadow var(--transition-normal) ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.news-card img {
    width: 100%;
    padding: 2px;
    aspect-ratio: auto;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-normal) ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

/* News Responsive */
@media (max-width: 800px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* --- 11. PLATFORM PAGE STYLES --- */
.platform-section {
    padding: 60px var(--page-padding);
    flex: 1;
}

.platform-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Main Platform Headers */
.platform-item {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.platform-header {
    width: 100%;
    padding: 25px 30px;
    background-color: var(--color-primary);
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--color-white);
    text-align: left;
}

/* Subitems */
.platform-subitem {
    border-top: 1px solid var(--color-gray-light);
}

.platform-subheader {
    width: 100%;
    padding: 20px 30px 20px 50px;
    background-color: var(--color-gray-lightest);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: left;
}

/* Subcontent - always visible */
.platform-subcontent {
    padding: 0 30px 25px 50px;
    background-color: var(--color-gray-lightest);
}

.platform-text-image {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.platform-text {
    flex: 1;
}

.platform-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray-darker);
    margin: 0;
}

.platform-image {
    flex: 0 0 300px;
}

.platform-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Platform Responsive */
@media (max-width: 800px) {

    .platform-header {
        padding: 20px;
        font-size: 1.6rem;
    }

    .platform-subheader {
        padding: 15px 20px 15px 30px;
    }

    .platform-subcontent {
        padding: 0 20px 20px 30px;
    }

    .platform-text-image {
        flex-direction: column;
    }

    .platform-image {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* --- 12. HELP OUT PAGE STYLES --- */
/* Hero Section */
.helpout-hero {
    width: 100%;
    min-height: 60vh;
    background-image: url('./resources/solomonHelpOut.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.helpout-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.helpout-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 60px 20px;
}

.helpout-slogan {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.helpout-cta {
    margin-top: auto;
    padding-top: 60px;
}

.helpout-deadline {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.helpout-quick-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.helpout-quick-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    padding: 8px 20px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    transition: all var(--transition-normal) ease;
}

.helpout-quick-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--color-white);
}

/* Actions Section */
.helpout-actions-section {
    padding: 80px var(--page-padding);
    flex: 1;
}

.helpout-actions-bottom {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 60px;
}

.helpout-action-card {
    flex: 1;
    max-width: 400px;
    text-align: center;
}

.helpout-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.helpout-btn.volunteer-btn {
    background-color: var(--color-volunteer);
    color: var(--color-white);
}

.helpout-btn.volunteer-btn:hover {
    background-color: var(--color-volunteer-hover);
}

.helpout-action-card p,
.helpout-action-featured p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-darker);
}

.helpout-action-featured {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding-top: var(--spacing-2xl);
    border-top: 1px solid var(--color-gray-light);
}

.helpout-btn-large {
    padding: 20px 60px;
    font-size: 1.4rem;
}

/* Help Out Responsive */
@media (max-width: 800px) {
    .helpout-slogan {
        font-size: 2rem;
    }

    .helpout-deadline {
        font-size: 1.1rem;
    }

    .helpout-quick-links {
        gap: 15px;
    }

    .helpout-quick-link {
        font-size: 0.95rem;
        padding: 6px 15px;
    }

    .helpout-actions-section {
        padding: 60px var(--page-padding);
    }

    .helpout-actions-bottom {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .helpout-action-card {
        max-width: 100%;
        width: 100%;
    }

    .helpout-action-featured {
        padding-top: 40px;
    }

    .helpout-btn {
        padding: 12px 35px;
        font-size: 1.1rem;
    }

    .helpout-btn-large {
        padding: 15px 50px;
        font-size: 1.2rem;
    }
}