    .jumbo, .mission, .cards, .services, .contact {
        padding: var(--margins-xxlarge) var(--margins-xlarge);
    }
    
    .centered .card,
    .services .card {
        max-width: 800px;
        margin: 0 auto;
        width: 100%;
    }
    
    .jumbo {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding-bottom: 0;
        position: relative;
        min-height: auto;
    }
    
    /* Allow text to flow naturally with positioned image */
    .jumbo-text-container {
        max-width: none;
    }
    
    .jumbo-background-image {
        position: absolute !important;
        top: 40px !important;
        right: 40px !important;
        bottom: auto !important;
        left: auto !important;
        width: 328px !important;
        height: 328px !important;
        z-index: 1 !important;
    }
    
    /* Styles for subtitle */
    .jumbo .subtitle {
        margin-bottom: 8px;
    }
    
    .jumbo .subtitle p {
        color: var(--global-text-on-dark-primary);
        font-size: 30px;
        font-weight: 600;
        line-height: 36px;
        letter-spacing: -0.225px;
        margin-bottom: 8px;
    }
    
    /* Styles for subsubtitle (tagline) */
    .jumbo .subsubtitle {
        margin-top: 0;
        margin-bottom: 24px;
    }
    
    .jumbo .subsubtitle p {
        color: var(--global-text-on-dark-primary);
        font-size: 16px; /* Smaller than subtitle */
        line-height: 1.4;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    /* Styles for main title */
    .jumbo .main-title p {
        color: var(--global-text-on-dark-primary);
        font-size: 128px;
        font-weight: 800;
        line-height: normal;
        letter-spacing: -1.536px;
        margin: 24px 0 0 0;
        max-width: 1023px;
    }
    
    /* Button styles */
    .jumbo a {
        align-self: flex-start; /* Align button to the left */
        margin-top: 16px;
        margin-bottom: 60px;
        padding: 8px 16px;
        justify-content: center;
        color: var(--global-text-on-dark-primary);
        border-radius: var(--rounding-default);
        border: 1px solid var(--components-button-text-on-dark);
        background: var(--text-theme-green);
        display: flex;
        gap: 8px;
        align-items: center;
        text-decoration: none;
    }
    
    /* Add space after jumbo section */
    .mission {
        padding-top: var(--margins-xxlarge); /* Extra padding at top of mission section */
    }
    
    /* Mobile styles - Home-specific only (base template overrides now in base_top_only.html) */
    @media (max-width: 576px) {
        /* Add minimal internal spacing for readability */
        .mission, .cards, .services, .contact {
            padding: 0.75rem;
        }
        
        /* Card compression */
        .card-body {
            padding: 0.75rem;
        }
        
        .card {
            margin-bottom: 1rem !important;
        }
    }
    
    @media screen and (max-width: 768px) {
        .jumbo {
            padding: var(--margins-medium);
            padding-bottom: 60px; /* Space at bottom on mobile */
            align-items: center;
            text-align: center;
        }
        
        .jumbo-background-image {
            top: 50px !important;
            left: 50% !important;
            right: auto !important;
            bottom: auto !important;
            transform: translateX(-50%) !important;
            width: 275px !important;
            height: 275px !important;
        }
        
        .jumbo-text-container {
            max-width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .jumbo .subtitle p,
        .jumbo .subsubtitle p,
        .jumbo .main-title p {
            text-align: center;
        }
        
        .jumbo .main-title p {
            font-size: 48px;
            line-height: 48px;
            letter-spacing: -0.576px;
            margin-top: 16px;
            margin-bottom: 32px;
        }
        
        .jumbo .subtitle p {
            font-size: 18px;
            line-height: 28px;
            letter-spacing: normal;
            margin-top: 300px; /* Increased space for the header image */
        }
        
        /* Hide line breaks on mobile for natural text flow */
        .jumbo .subtitle p br {
            display: none;
        }
        
        .jumbo .subsubtitle p {
            font-size: 14px;
            margin-top: 8px;
        }
        
        .jumbo a {
            align-self: center;
            margin-bottom: 32px;
        }
    }
    
    /* Fine-tune for specific mobile screen sizes - ordered largest to smallest */
    @media screen and (max-width: 430px) {
        .jumbo .subtitle p {
            margin-top: 340px; /* Extra space for larger phones */
        }
    }
    
    @media screen and (max-width: 414px) {
        .jumbo-background-image {
            top: 60px !important;
            left: 50% !important;
            right: auto !important;
            bottom: auto !important;
            transform: translateX(-50%) !important;
            width: 260px !important;
            height: 260px !important;
        }
        
        .jumbo .subtitle p {
            margin-top: 340px; /* Match the spacing from 430px breakpoint */
        }
    }
    .mission p, .contact p {
        margin: auto;
    }
    .mission p, .contact p {
        margin-block-start: 1.5em;
        margin-block-end: 1.5em;
    }
    .privacy {
        background-color: var(--surface-info);
    }
    .cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }
    @media screen and (max-width: 992px) {
        .cards {
            flex-direction: column;
        }
        .underlined_header {
            font-size: 1.25rem; /* added Adjust font size for small screens */
        }
        .underlined_header::after {
            width: 70%; /* added Increase underline width for better visibility */
        }
        /* added */
        p.large.underlined_header {
            font-size: 1.25rem; /* Adjust font size */
            line-height: 1; /* Adjust spacing between lines */
            text-align: left; /* Align text to the left */
        }

    }
    .card {
        border: 1px solid var(--components-card-border);
        background: var(--components-card-background);
        flex: 1 0 200px;
        max-width: 400px;
        padding: 0 24px 24px 24px;
    }
    .card.get-involved {
        color: var(--theme-primary-red-dark);
    }
    .card.how-it-works {
        color: var(--theme-primary-yellow-dark);
    }
    .card.security {
        color: var(--theme-primary-blue-dark);
    }
    .card .color-bar {
        height: 15px;
        margin: 0 -24px 16px -24px;
        background-color: currentColor;
    }
    .card svg {
        display: block;
    }
    .card .underlined_header {
        margin: 16px 0 8px 0;
    }
    .card.get-involved .underlined_header {
        background-image: linear-gradient(to right, var(--theme-primary-red-light), var(--theme-primary-red-light));
    }
    .card.how-it-works .underlined_header {
        background-image: linear-gradient(to right, var(--theme-primary-yellow-light), var(--theme-primary-yellow-light));
    }
    .card.card.security .underlined_header {
        background-image: linear-gradient(to right, var(--theme-primary-blue-light), var(--theme-primary-blue-light));
    }
    .card .subtle_text {
        margin: 0 0 16px 0; /* TODO this will become 0 0 8px 0 once we add the button links below */
    }
    .services-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 64px;
    }
    .services-column {
        flex: 1 0 400px;
    }
    
    /* Mobile responsive fix for services */
    @media screen and (max-width: 768px) {
        .services-container {
            gap: 8px 16px;
        }
        .services-column {
            flex: 1 0 100%;
            max-width: 100%;
        }
    }
    .service {
        display: flex;
        gap: 24px;
        align-items: center;
        margin-bottom: 24px;
    }
    .service svg {
        flex-shrink: 0;
        color: var(--theme-green-dark);
    }
    .service .content p {
        margin: 4px 0;
    }
    .privacy {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 64px;
        padding: var(--margins-xlarge) var(--margins-xlarge);
    }
    .privacy .headline {
        font-size: 96px;
        font-weight: 800;
        line-height: normal;
        letter-spacing: -1.152px;
        color: var(--theme-green-dark);
        flex: 0 0 400px;
    }
    @media screen and (max-width: 768px) {
        .privacy {
            gap: 24px;
            flex-direction: column;
            text-align: center;
        }
        .privacy .headline {
            font-size: 80px;
            font-weight: 800;
            line-height: normal;
            letter-spacing: -0.96px;
            text-align: center; /* added */
            flex: none; /* Remove fixed height */
        }
        .privacy .content {
            text-align: center;
        }
    }
    @media screen and (max-width: 576px) {
        .privacy .headline {
            font-size: 32px;
        }
    }
    .privacy .content {
        flex: 1 0 200px;
        max-width: 800px;
    }
    
    .privacy .card,
    .privacy .card-body {
        display: contents;
    }
    .btn-outline {
        display: inline-flex; /* Align the SVG and text inline */
        align-items: center; /* Vertically center the contents */
        justify-content: center; /* Center-align the text and SVG */
        border: 1px solid #004d36; /* Match the border color to the background green */
        background-color: transparent; /* No fill */
        color: #004d36; /* Green text color to match the border */
        padding: 0.5rem 1rem; /* Add some padding */
        font-size: 1rem; /* Adjust font size */
        font-weight: bold; /* Make the text bold */
        text-decoration: none; /* Remove underline */
        border-radius: 0; /* 90-degree edges */
        cursor: pointer; /* Pointer cursor for hover effect */
        transition: all 0.3s ease; /* Smooth hover transition */
    }
    
    .btn-outline:hover {
        background-color: #004d36; /* Green background on hover */
        color: #fff; /* White text on hover */
        text-decoration: none; /* Prevent underline on hover */
    }
    
    .btn-outline svg {
        margin-right: 0.5rem; /* Add spacing between the icon and text */
        fill: currentColor; /* Inherit the text color for the SVG icon */
        width: 1rem; /* Adjust SVG size */
        height: 1rem;
    }
    .btn-inverse {
        display: inline-flex; /* Align the SVG and text inline */
        align-items: center; /* Vertically center the contents */
        justify-content: center; /* Center-align the text and SVG */
        border: 1px solid #fff; /* White border */
        background-color: transparent; /* No fill */
        color: #fff; /* White text color */
        padding: 0.5rem 1rem; /* Add some padding */
        font-size: 1rem; /* Adjust font size */
        font-weight: bold; /* Make the text bold */
        text-decoration: none; /* Remove underline */
        border-radius: 0; /* 90-degree edges */
        cursor: pointer; /* Pointer cursor for hover effect */
        transition: all 0.3s ease; /* Smooth hover transition */
    }
    
    .btn-inverse:hover {
        background-color: #fff; /* White background on hover */
        color: #004d36; /* Green text on hover */
        text-decoration: none; /* Prevent underline on hover */
    }
    
    .btn-inverse svg {
        margin-right: 0.5rem; /* Add spacing between the icon and text */
        fill: currentColor; /* Inherit the text color */
        width: 1rem; /* Adjust SVG size */
        height: 1rem;
    }
    
    /* Quotes Carousel Styles */
    .quotes-carousel-section {
        padding: var(--margins-xxlarge) var(--margins-xlarge);
        background-color: var(--surface-info);
        position: relative;
        overflow: hidden;
    }
    
    .quotes-carousel-container {
        margin: 0 auto;
    }
    
    /* Tab Navigation */
    .carousel-tabs {
        display: flex;
        justify-content: center;
        gap: 0;
        margin-bottom: 48px;
        border-bottom: 2px solid var(--components-card-border);
    }
    
    .carousel-tab {
        padding: 16px 32px;
        background: none;
        border: none;
        font-size: 18px;
        font-weight: 600;
        color: var(--global-text-primary);
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;
        opacity: 0.7;
    }
    
    .carousel-tab:hover {
        opacity: 1;
    }
    
    .carousel-tab.active {
        opacity: 1;
        color: var(--theme-green-dark);
    }
    
    .carousel-tab.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--theme-green-dark);
    }
    
    /* Theme-specific accent colors */
    .carousel-tab[data-theme="motivations"].active {
        color: var(--theme-primary-red-dark);
    }
    .carousel-tab[data-theme="motivations"].active::after {
        background: var(--theme-primary-red-dark);
    }
    
    .carousel-tab[data-theme="ethnicIdentity"].active {
        color: var(--theme-primary-yellow-dark);
    }
    .carousel-tab[data-theme="ethnicIdentity"].active::after {
        background: var(--theme-primary-yellow-dark);
    }
    
    .carousel-tab[data-theme="familyIdentity"].active {
        color: var(--theme-primary-blue-dark);
    }
    .carousel-tab[data-theme="familyIdentity"].active::after {
        background: var(--theme-primary-blue-dark);
    }
    
    /* Carousel Content */
    .carousel-content {
        position: relative;
        min-height: 300px;
        display: flex;
        align-items: center;
    }
    
    .quotes-container {
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    
    .quote-slide {
        display: none;
        animation: fadeIn 0.5s ease-in-out;
        text-align: center;
        padding: 0;
    }
    
    .quote-slide .quote-attribution {
        display: block;
        width: fit-content;
        margin: 16px auto 0 auto;
    }
    
    .quote-slide.active {
        display: block;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    /* Quote styling */
    .quote-text {
        font-size: 24px;
        line-height: 1.6;
        color: var(--global-text-primary);
        margin-bottom: 24px;
        font-style: italic;
        position: relative;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .quote-text::before,
    .quote-text::after {
        font-size: 48px;
        color: var(--theme-green-dark);
        position: absolute;
        opacity: 0.7;
    }
    
    .quote-text::before {
        content: '"';
        top: -20px;
        left: -40px;
    }
    
    .quote-text::after {
        content: '"';
        bottom: -40px;
        right: -40px;
    }
    
    .quote-attribution {
        font-size: 24px !important;
        font-weight: 500;
        color: var(--theme-green-dark);
        margin-top: 8px;
        margin-bottom: 0;
        text-align: center;
        display: inline-block;
        padding: 8px 16px;
        position: relative;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Theme-specific attribution colors */
    .motivations .quote-attribution {
        color: var(--theme-primary-red-dark);
    }
    
    .ethnicIdentity .quote-attribution {
        color: var(--theme-primary-yellow-dark);
    }
    
    .familyIdentity .quote-attribution {
        color: var(--theme-primary-blue-dark);
    }
    
    /* Navigation Arrows - Hidden */
    .carousel-nav {
        display: none;
    }
    
    /* Progress Dots */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 32px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--components-card-border);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .carousel-dot.active {
        background: var(--theme-green-dark);
        width: 24px;
        border-radius: 5px;
    }
    
    /* Theme-specific dot colors */
    .motivations .carousel-dot.active {
        background: var(--theme-primary-red-dark);
    }
    
    .ethnicIdentity .carousel-dot.active {
        background: var(--theme-primary-yellow-dark);
    }
    
    .familyIdentity .carousel-dot.active {
        background: var(--theme-primary-blue-dark);
    }
    
    /* Play/Pause Button */
    .carousel-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        margin-top: 24px;
    }
    
    .carousel-control-btn {
        background: var(--components-card-background);
        border: 1px solid var(--components-card-border);
        border-radius: var(--rounding-default);
        padding: 8px 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--global-text-primary);
        transition: all 0.3s ease;
        min-width: 40px;
        height: 40px;
    }
    
    .play-pause-btn {
        background: var(--components-card-background);
        border: 1px solid var(--components-card-border);
        border-radius: var(--rounding-default);
        padding: 8px 16px;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        font-size: 14px;
        color: var(--global-text-primary);
        transition: all 0.3s ease;
    }
    
    .carousel-control-btn:hover,
    .play-pause-btn:hover {
        background: var(--theme-green-light);
        border-color: var(--theme-green-dark);
    }
    
    .carousel-control-btn svg,
    .play-pause-btn svg {
        width: 16px;
        height: 16px;
    }
    
    /* Mobile Responsive for Carousel */
    @media screen and (max-width: 768px) {
        .quotes-carousel-section {
            padding: var(--margins-large) var(--margins-medium);
        }
        
        /* Stack tabs vertically on mobile */
        .carousel-tabs {
            flex-direction: column;
            gap: 8px;
            margin-bottom: 32px;
            border-bottom: none;
            padding-left: 16px;
        }
        
        .carousel-tab {
            font-size: 16px;
            padding: 12px 16px;
            text-align: left;
            border-radius: 4px;
            border: 1px solid var(--components-card-border);
            background: var(--components-card-background);
        }
        
        .carousel-tab.active::after {
            display: none; /* Hide the bottom border indicator */
        }
        
        .carousel-tab.active {
            background: var(--surface-info);
            border-color: currentColor;
        }
        
        /* Adjust quote content for mobile */
        .carousel-content {
            min-height: 250px;
        }
        
        .quote-text {
            font-size: 18px;
            padding: 0;
            line-height: 1.5;
        }
        
        /* Add "Quotes" indicator on mobile */
        .quote-slide::before {
            content: "Quotes" !important;
            display: block !important;
            text-align: center !important;
            font-style: italic !important;
            color: var(--theme-green-dark) !important;
            margin-bottom: 16px !important;
            font-size: 18px !important;
            opacity: 0.7 !important;
        }
        
        .quote-attribution {
            font-size: 15px;
        }
        
        /* Navigation arrows already hidden */
        
        /* Adjust dots spacing */
        .carousel-dots {
            margin-top: 24px;
        }
        
        /* Make control buttons smaller */
        .carousel-control-btn {
            min-width: 36px;
            height: 36px;
            padding: 6px;
        }
        
        .play-pause-btn {
            padding: 6px 12px;
            font-size: 12px;
        }
        
        .carousel-control-btn svg,
        .play-pause-btn svg {
            width: 14px;
            height: 14px;
        }
    }
    
    /* Extra small screens */
    @media screen and (max-width: 480px) {
        .quote-text {
            font-size: 16px;
            padding: 0;
        }
        
        .carousel-tab {
            font-size: 14px;
            padding: 10px 12px;
        }
    }
    
    /* Illinois Family Roots Pilot Program Announcement Card */
    .announcement-card {
        background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 100%);
        border: 2px solid var(--theme-green-light);
        border-radius: 16px;
        padding: 0;
        margin: 32px auto;
        max-width: 800px;
        box-shadow: 0 8px 32px rgba(26, 83, 54, 0.1);
        overflow: hidden;
        position: relative;
    }
    
    .announcement-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--theme-green-dark), var(--theme-primary-blue-dark), var(--theme-primary-red-dark), var(--theme-primary-yellow-dark));
    }
    
    .announcement-header {
        background: linear-gradient(135deg, var(--theme-green-dark) 0%, #1a6b42 100%);
        color: white;
        padding: 24px 32px;
        text-align: center;
        position: relative;
    }
    
    .announcement-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 20px;
        padding: 6px 16px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 12px;
        backdrop-filter: blur(10px);
    }
    
    .announcement-title {
        font-size: 32px;
        font-weight: 800;
        margin: 12px 0;
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .hr453-badge {
        display: inline-block;
        background: var(--theme-primary-yellow-dark);
        color: white;
        border-radius: 12px;
        padding: 6px 12px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 8px;
    }
    
    .announcement-content {
        padding: 32px;
    }
    
    .announcement-description {
        font-size: 18px;
        line-height: 1.6;
        color: var(--global-text-primary);
        text-align: center;
        margin-bottom: 24px;
    }
    
    .hr453-quote {
        background: rgba(26, 83, 54, 0.05);
        border-left: 4px solid var(--theme-green-dark);
        border-radius: 8px;
        padding: 20px 24px;
        margin: 24px 0;
        position: relative;
    }
    
    .hr453-quote i {
        color: var(--theme-green-light);
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .hr453-quote em {
        font-size: 16px;
        line-height: 1.5;
        color: var(--global-text-primary);
        display: block;
        margin-bottom: 8px;
    }
    
    .quote-attribution {
        font-size: 14px;
        color: var(--theme-green-dark);
        font-weight: 600;
        text-align: right;
    }
    
    .participation-action {
        background: white;
        border: 1px solid var(--components-card-border);
        border-radius: 12px;
        padding: 32px;
        margin-top: 32px;
        text-align: center;
        border-left: 4px solid var(--theme-green-dark);
    }
    
    .action-description {
        margin-bottom: 24px;
    }
    
    .action-description i {
        font-size: 40px;
        margin-bottom: 16px;
        color: var(--theme-green-dark);
    }
    
    .action-description h3 {
        font-size: 24px;
        font-weight: 700;
        color: var(--global-text-primary);
        margin-bottom: 12px;
    }
    
    .action-description p {
        font-size: 16px;
        line-height: 1.6;
        color: var(--global-text-secondary);
        max-width: 500px;
        margin: 0 auto 16px auto;
    }
    
    .signup-steps {
        margin: 24px 0;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .step-row {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        padding: 16px;
        background: rgba(26, 83, 54, 0.02);
        border-radius: 8px;
        border-left: 3px solid var(--theme-green-dark);
    }
    
    .step-number {
        background: var(--theme-green-dark);
        color: white;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
        flex-shrink: 0;
        margin-right: 16px;
        margin-top: 2px;
    }
    
    .step-content {
        flex: 1;
        text-align: left;
    }
    
    .step-content strong {
        color: var(--theme-green-dark);
        font-size: 16px;
        display: block;
        margin-bottom: 4px;
        text-align: left;
    }
    
    .step-content p {
        color: var(--global-text-secondary);
        font-size: 14px;
        line-height: 1.4;
        margin: 0;
        text-align: left;
    }
    
    .action-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    /* Enhanced Sign Up Button Styling */
    .signup-button-container {
        text-align: center;
        padding: 32px 24px;
        background: linear-gradient(135deg, rgba(26, 83, 54, 0.05) 0%, rgba(26, 83, 54, 0.02) 100%);
        border-radius: 16px;
        border: 1px solid rgba(26, 83, 54, 0.1);
        margin: 24px 0;
        box-shadow: 0 4px 20px rgba(26, 83, 54, 0.08);
    }
    
    .signup-btn-enhanced {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background: linear-gradient(135deg, var(--theme-green-dark) 0%, #1a6b42 100%);
        color: white;
        text-decoration: none;
        padding: 16px 32px;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(26, 83, 54, 0.3);
        position: relative;
        overflow: hidden;
    }
    
    .signup-btn-enhanced:hover {
        background: linear-gradient(135deg, #1a6b42 0%, var(--theme-green-dark) 100%);
        color: white;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(26, 83, 54, 0.4);
    }
    
    .signup-btn-enhanced:active {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(26, 83, 54, 0.3);
    }
    
    .signup-btn-enhanced::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }
    
    .signup-btn-enhanced:hover::before {
        left: 100%;
    }
    
    .signup-btn-enhanced i {
        font-size: 20px;
        color: white;
    }
    
    .signup-btn-enhanced span {
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    .signup-motivation {
        color: var(--theme-green-dark);
        font-size: 14px;
        font-style: italic;
        margin-top: 12px;
        margin-bottom: 0;
        opacity: 0.8;
    }
    
    .action-links {
        display: flex;
        justify-content: center;
    }
    
    .info-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--theme-green-dark);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        padding: 8px 16px;
        border: 1px solid var(--theme-green-light);
        border-radius: 6px;
        background: rgba(26, 83, 54, 0.05);
        transition: all 0.3s ease;
    }
    
    .info-link:hover {
        background: rgba(26, 83, 54, 0.1);
        border-color: var(--theme-green-dark);
        color: var(--theme-green-dark);
        text-decoration: none;
        transform: translateY(-1px);
    }
    
    .info-link i {
        font-size: 14px;
    }
    
    .announcement-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, var(--theme-primary-red-dark), #c53030);
        color: white;
        border: none;
        border-radius: 8px;
        padding: 12px 24px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    }
    
    .announcement-btn:hover {
        background: linear-gradient(135deg, #c53030, var(--theme-primary-red-dark));
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
        color: white;
        text-decoration: none;
    }
    
    .announcement-btn svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
    }
    
    /* Mobile responsive - Announcement-specific only (base template overrides now in base_top_only.html) */
    @media (max-width: 576px) {
        .announcement-card {
            margin: 24px 0.75rem;
            border-radius: 12px;
        }
        
        .announcement-header {
            padding: 20px 0.75rem;
        }
        
        .announcement-content {
            padding: 24px 0.75rem;
        }
        
        .participation-action {
            padding: 24px 0.75rem;
        }
    }
    
    @media screen and (max-width: 768px) {
        .announcement-card {
            margin: 24px 16px;
            border-radius: 12px;
        }
        
        .announcement-header {
            padding: 20px 24px;
        }
        
        .announcement-title {
            font-size: 24px;
        }
        
        .announcement-content {
            padding: 24px 20px;
        }
        
        .participation-action {
            padding: 24px 20px;
        }
        
        .action-description h3 {
            font-size: 20px;
        }
        
        .action-description p {
            font-size: 14px;
        }
        
        .hr453-quote {
            padding: 16px 20px;
        }
    }
    
