/* =========================================
       Page Banner Section Starts
       ========================================= */
    .page-banner-section {
        background-color: var(--dark-navy);
        padding: 6rem 0;
        color: #ffffff;
    }

    /* Typography */
    .page-banner-title {
        font-family: var(--font-heading);
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -1px;
        margin-bottom: 1.5rem;
    }

    .page-banner-desc {
        font-family: var(--font-body);
        font-size: 1rem;
        color: #B2BDC8;
        line-height: 1.6;
        margin-bottom: 2.5rem;
        max-width: 90%;
    }

    /* Stats Row Styling (Reusing .detail-item from hero for consistency) */
    .page-banner-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem 2rem;
    }

    /* Image Styling */
    .page-banner-image-wrapper {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    }

    .page-banner-image {
        width: 100%;
        height: auto;
        display: block;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
        .page-banner-section {
            padding: 4rem 0;
            text-align: center;
        }
        .page-banner-desc {
            max-width: 80%;
            margin-left: auto;
            margin-right: auto;
        }
        .page-banner-stats {
            justify-content: center;
        }
    }
    
    @media (max-width: 575.98px) {
        .page-banner-desc {
            max-width: 100%;
        }
    }
    /* Page Banner Section Ends */

    /* =========================================
       Our Story Section Starts
       ========================================= */
    .our-story-section {
        background-color: #ffffff; /* Or var(--bg-off-white) if you prefer */
        padding: 6rem 0;
    }

    /* We can reuse `.about-image-composition`, `.accent-tl`, `.accent-br`, and `.about-img-wrapper` from the homepage "About" section */
    
    .story-img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .story-img:hover {
        transform: scale(1.03);
    }
    
    /* Specific Typography for this section */
    .story-text-content p {
        font-family: var(--font-body);
        color: #64748B;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    /* Make the shared .section-title class slightly smaller for internal pages if desired */
    .our-story-section .section-title {
        font-size: clamp(2rem, 3.5vw, 2.8rem);
    }

    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
        .our-story-section {
            padding: 4.5rem 0;
            text-align: center;
        }
        .our-story-section .section-eyebrow,
        .our-story-section .section-title {
            text-align: center;
        }
    }
    
    @media (max-width: 767.98px) {
        .story-img {
            height: 400px; /* Adjust image height for mobile */
        }
    }
    /* Our Story Section Ends */

    /* =========================================
       Timeline Section Starts
       ========================================= */
    .timeline-section {
        background-color: var(--bg-off-white);
        padding: 6rem 0;
    }

    /* The main wrapper that holds the timeline spine */
    .timeline-wrapper {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
    }

    /* The vertical spine of the timeline */
    @media (min-width: 768px) {
        .timeline-wrapper::after {
            content: '';
            position: absolute;
            width: 2px;
            background-color: #E2E8F0; /* Soft slate gray */
            top: 10px;
            bottom: 10px;
            left: 50%;
            margin-left: -1px;
        }
    }

    /* Each individual timeline entry */
    .timeline-item {
        padding: 10px 40px;
        position: relative;
        width: 100%;
    }
    
    /* The dot on the timeline spine */
    @media (min-width: 768px) {
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            right: -6px;
            background-color: #ffffff;
            border: 2px solid var(--primary-teal);
            top: 22px;
            border-radius: 50%;
            z-index: 1;
        }
    }

    /* Positioning the timeline cards left and right */
    @media (min-width: 768px) {
        /* Default for left side */
        .timeline-item {
            width: 50%;
            left: 0;
        }
        
        /* Specifics for right side items */
        .timeline-item:nth-child(even) {
            left: 50%;
        }

        /* Adjust the dot position for right side items */
        .timeline-item:nth-child(even)::after {
            left: -6px;
        }
    }
    
    /* The white content card */
    .timeline-card {
        padding: 20px 30px;
        background-color: #ffffff;
        position: relative;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0,0,0,0.02);
    }
    
    /* Typography inside the card */
    .timeline-year {
        font-family: var(--font-body);
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--primary-teal);
        margin-bottom: 0.5rem;
    }

    .timeline-title {
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 700;
        color: var(--dark-navy);
        margin-bottom: 0.5rem;
    }

    .timeline-text {
        font-family: var(--font-body);
        font-size: 0.8rem;
        color: #64748B;
        line-height: 1.6;
        margin: 0;
    }
    
    /* Responsive stacking for mobile */
    @media (max-width: 767.98px) {
        .timeline-section {
            padding: 4.5rem 0;
        }

        /* On mobile, cards take full width */
        .timeline-item {
            width: 100%;
            padding-left: 15px;
            padding-right: 15px;
            margin-bottom: 20px;
        }

        /* Move all cards to the right side of the "invisible" line */
        .timeline-item:nth-child(even) {
            left: 0;
        }
    }
    /* Timeline Section Ends */

    /* =========================================
       Values Section Starts
       ========================================= */
    .values-section {
        background-color: #ffffff;
        padding: 6rem 0;
    }

    /* Value Card Styling */
    .value-card {
        background-color: #ffffff;
        padding: 2.5rem 2rem;
        border-radius: 8px;
        border: 1px solid #E2E8F0; /* Subtle slate border */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
        height: 100%; /* Ensures all cards in a row have equal height */
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Aligns content to the left */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    }

    /* Icon Wrapper Styling */
    .value-icon-wrapper {
        width: 42px;
        height: 42px;
        background-color: #F8F9FA; /* Lightest gray */
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .value-icon-wrapper i {
        color: var(--primary-teal);
        font-size: 1.2rem;
    }

    /* Card Typography */
    .value-card-title {
        font-family: var(--font-heading);
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--dark-navy);
        margin-bottom: 0.75rem;
    }

    .value-card-desc {
        font-family: var(--font-body);
        font-size: 0.85rem;
        color: #64748B;
        line-height: 1.7;
        margin: 0;
    }

    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
        .values-section {
            padding: 4.5rem 0;
        }
    }
    /* Values Section Ends */

      /* =========================================
       Stats Section Starts
       ========================================= */
    .stats-section {
        padding: 4.5rem 0; 
        background-color: #fff; /* Clean white background */

    }

    .stat-item {
        position: relative;
        padding: 1rem 0;
    }

    /* Vertical Dividers for Desktop/Tablet */
    @media (min-width: 768px) {
        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 45px; /* Height of the divider line */
            width: 1px;
            background-color: #E2E8F0; /* Soft slate-grey line matching screenshot */
        }
    }

    /* Vertical Dividers for Mobile (2x2 Grid Layout) */
    @media (max-width: 767.98px) {
        /* Add divider only to the odd items (left side of the 2x2 grid) */
        .stat-item:nth-child(odd)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 45px;
            width: 1px;
            background-color: #E2E8F0;
        }
        
        .stat-item {
            margin-bottom: 1.5rem; /* Add spacing between the top and bottom rows on mobile */
        }
    }

    .stat-number {
        font-family: var(--font-heading);
        font-size: clamp(2.5rem, 4vw, 3.2rem); /* Fluid typography: scales based on screen size */
        font-weight: 800;
        color: var(--primary-teal);
        margin-bottom: 0.2rem;
        line-height: 1;
        letter-spacing: -1px;
    }

    /* The "+" sign needs to be thinner as per the design */
    .stat-plus {
        font-weight: 300;
        font-size: 0.85em; /* Slightly smaller relative to the number */
        vertical-align: top;
        margin-left: 2px;
        opacity: 0.8; /* Softens the teal slightly to match the visual weight in the image */
    }

    .stat-label {
        font-family: var(--font-body);
        font-size: 0.75rem;
        font-weight: 600;
        color: #64748B; /* Exact muted gray from previous sections */
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 0;
    }
    /* Stats Section Ends */

    /* =========================================
       Ecosystem Section Starts
       ========================================= */
    .ecosystem-section {
        background-color: #ffffff;
        padding: 6rem 0 3rem 0; /* Reduced bottom padding to connect with CTA */
    }

    /* Ecosystem Card Styling */
    .eco-card {
        background-color: #ffffff;
        border: 1px solid #E2E8F0;
        border-radius: 8px;
        padding: 2rem 1.5rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .eco-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    }
    
    /* Highlighted State */
    .eco-card.is-highlighted {
        border-color: var(--primary-teal);
    }

    /* Typography */
    .eco-card-title {
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 700;
        color: var(--dark-navy);
        margin-bottom: 0.25rem;
    }

    .eco-card-desc {
        font-family: var(--font-body);
        font-size: 0.8rem;
        color: #64748B;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        flex-grow: 1; /* Pushes badge to the bottom */
    }

    .eco-card-badge {
        font-family: var(--font-body);
        background-color: #F1F5F9; /* Neutral light gray */
        color: #64748B;
        font-size: 0.65rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 0.35rem 0.85rem;
        border-radius: 50rem;
    }
    
    .eco-card.is-highlighted .eco-card-badge {
        background-color: #E8F3F1; /* Teal tint for highlighted badge */
        color: var(--primary-teal);
    }
    /* Ecosystem Section Ends */


    /* =========================================
       Final CTA Banner Starts
       ========================================= */
    .final-cta-section {
        padding: 3rem 0 6rem 0;
        background-color: #ffffff;
    }
    
    .cta-banner-wrapper {
        background-color: var(--dark-navy);
        color: #ffffff;
        padding: 3rem 3.5rem;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(24, 38, 52, 0.15);
    }

    /* Typography */
    .cta-title {
        font-family: var(--font-heading);
        font-size: clamp(1.5rem, 2.5vw, 2rem);
        font-weight: 800;
        margin-bottom: 0.75rem;
    }

    .cta-text {
        font-family: var(--font-body);
        color: #B2BDC8;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0;
        max-width: 95%;
    }
    
    /* Buttons */
    .cta-actions {
        display: flex;
        gap: 1rem;
        justify-content: flex-end;
    }

    .btn-cta-primary {
        background-color: var(--primary-teal);
        color: #ffffff !important;
        font-family: var(--font-body);
        font-size: 0.85rem;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        border: 1px solid var(--primary-teal);
        transition: all 0.3s ease;
    }
    
    .btn-cta-primary:hover {
        background-color: #0a6e63;
        border-color: #0a6e63;
    }

    .btn-cta-secondary {
        background-color: transparent;
        color: #ffffff !important;
        font-family: var(--font-body);
        font-size: 0.85rem;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }
    
    .btn-cta-secondary:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: #ffffff;
    }

    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
        .cta-actions {
            justify-content: center; /* Center buttons when they stack */
            flex-wrap: wrap;
        }
    }
    /* Final CTA Banner Ends */

    /* =========================================
       Mission Intro Section Starts
       ========================================= */
    .mission-section {
        background-color: var(--dark-navy); /* #1E2A38 */
        padding: 7rem 0;
        color: #ffffff;
        overflow: hidden;
    }

    /* Typography */
    .mission-title {
        font-family: var(--font-heading);
        font-size: clamp(2.2rem, 3.5vw, 3.2rem); /* Fluid scaling for perfect proportion */
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -1px;
        margin-bottom: 1.5rem;
    }

    /* Assuming .text-teal is already in your CSS from the Hero section, 
       but here it is again just in case: */
    .text-teal {
        color: var(--primary-teal) !important;
    }

    .mission-desc {
        font-family: var(--font-body);
        color: #B2BDC8; /* Soft slate/gray for readability */
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 3rem;
        max-width: 95%;
    }

    /* Icon Stats Row */
    .mission-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem 2.5rem; /* 1.5rem vertical gap if wrapped, 2.5rem horizontal gap */
    }

    .m-stat-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-body);
        font-size: 0.85rem;
        color: #D1D8E0;
        font-weight: 500;
    }

    .m-stat-item i {
        color: var(--primary-teal);
        font-size: 1.25rem;
    }

    /* Image Styling */
    .mission-image-wrapper {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4); /* Deep shadow to separate from dark bg */
        position: relative;
    }

    .mission-image {
        width: 100%;
        height: 400px; /* Fixed height to match the cinematic aspect ratio of the screenshot */
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .mission-image-wrapper:hover .mission-image {
        transform: scale(1.03); /* Extremely subtle premium zoom effect on hover */
    }

    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
        .mission-section {
            padding: 5rem 0;
        }
        
        .mission-desc {
            max-width: 100%;
            margin-bottom: 2rem;
        }

        .mission-image {
            height: 350px;
        }
        
        .mission-stats {
            gap: 1rem 1.5rem; /* Tighter gap on tablets/mobile */
        }
    }
    
    @media (max-width: 575.98px) {
        .mission-image {
            height: 250px;
        }
    }
    /* Mission Intro Section Ends */

/* =========================================
       Detailed Events List Section Starts
       ========================================= */
    .detailed-events-section {
        background-color: #ffffff;
    }

    /* Alternating Background Bands */
    .event-band {
        padding: 2.5rem 0;
    }
    
    .event-band:nth-child(even) {
        background-color: var(--bg-off-white); /* #F4F1EC */
    }

    /* Long Event Card Architecture */
    .long-event-card {
        display: flex;
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06); /* Premium drop shadow */
        overflow: hidden; /* Ensures the image respects the border-radius */
        border: 1px solid rgba(0, 0, 0, 0.03);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .long-event-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.09);
    }

    /* Column 1: Image */
    .lec-image-col {
        width: 320px;
        flex-shrink: 0; /* Prevents image from squishing */
    }

    .lec-image-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Column 2: Main Content */
    .lec-content-col {
        flex-grow: 1; /* Takes up remaining space */
        padding: 2.5rem;
        display: flex;
        flex-direction: column;
    }

    /* Header & Badges */
    .lec-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 1rem;
    }

    /* Reusing .event-step & .badge-virtual from earlier, but adding specifics */
    .badge-flagship-solid {
        background-color: var(--primary-teal);
        color: #ffffff;
        font-family: var(--font-body);
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 0.35rem 0.75rem;
        border-radius: 4px;
    }

    /* Typography */
    .lec-title {
        font-family: var(--font-heading);
        color: var(--dark-navy);
        font-size: 1.3rem;
        font-weight: 800;
        line-height: 1.3;
        margin-bottom: 0.85rem;
    }

    .lec-desc {
        font-family: var(--font-body);
        color: #64748B;
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    /* Tags */
    .lec-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 2rem;
    }

    .lec-tags span {
        background-color: #F1F5F9;
        color: #64748B;
        font-family: var(--font-body);
        font-size: 0.7rem;
        font-weight: 600;
        padding: 0.4rem 0.85rem;
        border-radius: 4px; /* Slight rounding, not full pills based on screenshot */
    }

    /* Action Buttons Area */
    .lec-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: auto; /* Pushes buttons to the bottom of the content column */
    }

    .btn-outline-gray {
        background-color: transparent;
        color: var(--dark-navy) !important;
        font-family: var(--font-body);
        font-size: 0.8rem;
        font-weight: 600;
        padding: 0.65rem 1.25rem;
        border-radius: 4px;
        border: 1px solid #CBD5E1;
        transition: all 0.2s ease;
    }

    .btn-outline-gray:hover {
        background-color: #F8F9FA;
        border-color: #94A3B8;
    }

    /* Column 3: Sidebar Details Box */
    .lec-sidebar-col {
        width: 320px;
        flex-shrink: 0;
        padding: 2.5rem 2.5rem 2.5rem 0; /* Padding top, right, bottom. Left is 0 to stay close to content */
        display: flex;
        flex-direction: column;
    }

    .lec-details-box {
        background-color: #F4F1EC; /* The distinct off-white box */
        border-radius: 8px;
        padding: 1.5rem;
        height: 100%;
    }

    .lec-details-title {
        font-family: var(--font-body);
        color: var(--primary-teal);
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 1.25rem;
    }

    /* Detail Grid Layout */
    .detail-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 0.85rem;
    }

    .detail-item:last-child {
        margin-bottom: 0;
    }

    .detail-label {
        width: 90px; /* Fixed width ensures perfect vertical alignment of the values */
        flex-shrink: 0;
        font-family: var(--font-body);
        font-size: 0.75rem;
        color: #94A3B8;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .detail-label i {
        font-size: 0.9rem;
        width: 16px; /* Keeps icons perfectly center-aligned with each other */
        text-align: center;
    }

    .detail-val {
        flex-grow: 1;
        font-family: var(--font-body);
        font-size: 0.8rem;
        color: var(--dark-navy);
        font-weight: 500;
        line-height: 1.4;
    }

    /* Responsive Adjustments */
    @media (max-width: 1199.98px) {
        .lec-image-col { width: 250px; }
        .lec-sidebar-col { width: 280px; padding: 2rem 2rem 2rem 0; }
        .lec-content-col { padding: 2rem; }
    }

    @media (max-width: 991.98px) {
        /* Switch to stacked layout on tablets */
        .long-event-card {
            flex-direction: column;
        }
        
        .lec-image-col {
            width: 100%;
            height: 250px; /* Fixed height when stacked horizontally */
        }

        .lec-sidebar-col {
            width: 100%;
            padding: 0 2rem 2rem 2rem; /* Remove right padding, add left/bottom padding */
        }

        .lec-details-box {
            height: auto;
        }
    }

    @media (max-width: 575.98px) {
        .lec-content-col {
            padding: 1.5rem;
        }
        .lec-sidebar-col {
            padding: 0 1.5rem 1.5rem 1.5rem;
        }
        .lec-actions .btn {
            width: 100%; /* Full width buttons on mobile */
            text-align: center;
            justify-content: center;
        }
    }
    /* Detailed Events List Section Ends */

    /* =========================================
       Inline Sponsorship CTA Starts
       ========================================= */
    .sponsorship-cta-section {
        background-color: #FAFAFA; /* Matches the background of the calendar section above it */
        padding: 3rem 0 6rem 0; /* Padding top is smaller to tuck it nicely under the previous section */
    }

    /* Flexbox Banner Layout */
    .inline-cta-banner {
        background-color: var(--dark-navy);
        border-radius: 8px; /* Sharper corner radius than the event cards */
        padding: 3rem 4rem; /* Generous internal padding */
        display: flex;
        align-items: center;
        justify-content: space-between; /* Pushes text to left, button to right */
        gap: 2rem; /* Ensures the text never touches the button on mid-sized screens */
    }

    /* Content Area */
    .inline-cta-content {
        max-width: 65%; /* Restricts line-length of text for better readability */
    }

    .inline-cta-title {
        font-family: var(--font-heading);
        color: #ffffff;
        font-size: clamp(1.4rem, 2.5vw, 1.7rem); /* Fluid typography */
        font-weight: 800;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .inline-cta-text {
        font-family: var(--font-body);
        color: #B2BDC8; /* Soft slate gray for reading comfort */
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* Specific Button Tweak for this Banner */
    .btn-sponsor {
        padding: 0.9rem 1.8rem;
        white-space: nowrap; /* Crucial: Prevents the button text from wrapping onto two lines */
        font-size: 0.85rem;
    }

    /* Responsive Adjustments for Mobile/Tablet */
    @media (max-width: 991.98px) {
        .inline-cta-banner {
            flex-direction: column; /* Stacks the content vertically */
            text-align: center;
            padding: 2.5rem 2rem;
        }

        .inline-cta-content {
            max-width: 100%; /* Removes restriction so text centers nicely */
            margin-bottom: 2rem;
        }

        .inline-cta-action {
            width: 100%; /* Makes button container full width */
        }

        .btn-sponsor {
            width: 100%; /* Makes the button itself full width for easy mobile tapping */
        }
    }
    /* Inline Sponsorship CTA Ends */

    /* =========================================
       Gallery Section Starts
       ========================================= */
    .gallery-section {
        background-color: var(--bg-off-white); /* #F4F1EC */
        padding: 5rem 0 7rem 0;
    }

    .gallery-section .section-title {
        font-family: var(--font-heading);
        font-size: clamp(2rem, 3vw, 2.5rem);
        color: var(--dark-navy);
        font-weight: 800;
        margin-bottom: 0;
    }

    /* Filter Buttons */
    .gallery-filters {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .filter-btn {
        background-color: transparent;
        color: #64748B;
        font-family: var(--font-body);
        font-size: 0.8rem;
        font-weight: 600;
        padding: 0.6rem 1.25rem;
        border: 1px solid #D6D2CA; /* Light border matching off-white bg */
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .filter-btn:hover {
        background-color: #ffffff;
        color: var(--dark-navy);
        border-color: #B2BDC8;
    }

    .filter-btn.active {
        background-color: var(--primary-teal);
        color: #ffffff;
        border-color: var(--primary-teal);
    }

    /* CSS Grid Layout */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 Equal Columns */
        grid-auto-rows: 240px; /* Fixed row height to ensure perfect spans */
        gap: 20px;
        grid-auto-flow: dense; /* Fills in holes seamlessly */
    }

    .gallery-item {
        border-radius: 16px;
        overflow: hidden;
        position: relative;
        background-color: #E2E8F0; /* Placeholder color while images load */
        box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.04); /* Subtle zoom on hover */
    }

    /* Grid Spanning Classes */
    .span-col-2 {
        grid-column: span 2;
    }

    .span-row-2 {
        grid-row: span 2;
    }

    /* Load More Button Adjustment */
    .btn-load-more {
        padding: 0.8rem 2rem;
        border-radius: 6px;
        font-size: 0.85rem;
    }

    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
        .gallery-grid {
            grid-template-columns: repeat(2, 1fr); /* Drops to 2 columns on tablet */
            grid-auto-rows: 220px;
        }
        
        /* Reset the tall image to span 1 row on tablets so it doesn't leave awkward masonry gaps */
        .span-row-2 {
            grid-row: span 1;
        }
    }

    @media (max-width: 575.98px) {
        .gallery-grid {
            grid-template-columns: 1fr; /* Drops to 1 column on mobile */
            grid-auto-rows: 250px;
            gap: 15px;
        }
        
        /* Reset spans for mobile */
        .span-col-2 {
            grid-column: span 1;
        }
        
        .gallery-filters {
            gap: 8px;
        }
        
        .filter-btn {
            font-size: 0.75rem;
            padding: 0.5rem 1rem;
        }
    }
    /* Gallery Section Ends */

    /* =========================================
       Directory List Section Starts
       ========================================= */
    .directory-section {
        background-color: var(--bg-off-white); /* #F4F1EC exact match */
        padding: 5rem 0 6rem 0;
    }

    /* --- TOP STATS ROW --- */
    .dir-stats-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .dir-stat-block {
        text-align: center;
        flex: 1;
    }

    .dir-stat-num {
        font-family: var(--font-heading);
        font-size: clamp(2rem, 3vw, 2.5rem);
        color: var(--primary-teal); /* Strictly Teal */
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 0.25rem;
    }

    .dir-stat-text {
        font-family: var(--font-body);
        font-size: 0.6rem;
        color: #94A3B8; /* Muted gray */
        font-weight: 700;
        letter-spacing: 1px;
    }

    .dir-stat-divider {
        width: 1px;
        height: 40px;
        background-color: #D6D2CA; /* Delicate beige/gray line */
    }

    /* --- FILTER BAR --- */
    .dir-filter-box {
        background-color: #ffffff;
        border-radius: 12px;
        padding: 1.5rem 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); /* Soft ambient shadow */
    }

    .dir-label {
        font-family: var(--font-body);
        font-size: 0.65rem;
        color: #94A3B8;
        font-weight: 600;
        margin-bottom: 0.4rem;
        display: block;
    }

    .dir-select {
        background-color: #F8F9FA; /* Soft gray fill */
        border: 1px solid #E2E8F0;
        font-family: var(--font-body);
        font-size: 0.85rem;
        color: #475569;
        padding: 0.75rem 1rem;
        border-radius: 6px;
        cursor: pointer;
        box-shadow: none !important; /* Overrides bootstrap focus ring */
    }

    .dir-select:focus {
        border-color: var(--primary-teal);
    }

    .dir-search-btn {
        padding: 0.75rem 1rem;
        border-radius: 6px;
        font-size: 0.85rem;
    }

    /* --- DIRECTORY CARD --- */
    .dir-org-card {
        background-color: #ffffff;
        border-radius: 16px; /* Soft rounding based on screenshot */
        padding: 2rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border: 1px solid rgba(0, 0, 0, 0.03);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .dir-org-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    }

    /* Top Badge (Beige Bg, Teal Text) */
    .org-category-badge {
        background-color: #E8F3F1; /* Pale teal tint */
        color: var(--primary-teal);
        font-family: var(--font-body);
        font-size: 0.55rem;
        font-weight: 800;
        letter-spacing: 0.5px;
        padding: 0.35rem 0.65rem;
        border-radius: 4px;
        margin-bottom: 1.25rem;
    }

    /* Typography */
    .org-title {
        font-family: var(--font-heading);
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--dark-navy);
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    .org-location {
        font-family: var(--font-body);
        font-size: 0.75rem;
        color: #64748B;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    /* Tags (Beige Bg, Dark Text) */
    .org-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 2rem;
    }

    .org-tag {
        background-color: #EBE7E0; /* Warm beige */
        color: #475569; /* Slate */
        font-family: var(--font-body);
        font-size: 0.6rem;
        font-weight: 700;
        padding: 0.35rem 0.7rem;
        border-radius: 50rem; /* Pill shape */
    }

    /* Pill Button Constraint */
    .btn-pill-teal {
        background-color: var(--primary-teal);
        color: #ffffff !important;
        font-family: var(--font-body);
        font-weight: 600;
        border-radius: 50rem; /* Absolute pill shape */
        border: 1px solid var(--primary-teal);
        transition: all 0.3s ease;
    }
    
    .btn-pill-teal:hover {
        background-color: #0a6e63;
        border-color: #0a6e63;
    }

    /* --- PAGINATION --- */
    .custom-pagination {
        display: flex;
        gap: 6px;
    }

    .page-box {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffffff;
        border: 1px solid #D6D2CA;
        border-radius: 4px; /* Square-ish with slight round */
        color: #475569;
        font-family: var(--font-body);
        font-size: 0.8rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .page-box:hover {
        background-color: #F8F9FA;
        color: var(--dark-navy);
        border-color: #B2BDC8;
    }

    .page-box.active {
        background-color: var(--primary-teal);
        color: #ffffff;
        border-color: var(--primary-teal);
    }

    /* Responsive Adjustments */
    @media (max-width: 767.98px) {
        .dir-stats-wrapper {
            flex-direction: column;
            gap: 20px;
        }
        .dir-stat-divider {
            width: 50px;
            height: 1px; /* Turns vertical line into horizontal line on mobile */
        }
        .dir-filter-box {
            padding: 1.5rem;
        }
    }
    /* Directory List Section Ends */

    /* =========================================
       Insights Hub Section Starts
       ========================================= */
    .insights-hub-section {
        background-color: #F8F5F1; /* Exact soft beige background from screenshot */
        padding: 6rem 0;
    }

    /* --- FEATURED ARTICLE --- */
    .featured-article-card {
        background-color: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(0,0,0,0.02);
    }
    
    .featured-img-wrapper {
        min-height: 250px;
    }

    .featured-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .featured-content {
        padding: 2.5rem 3rem;
    }

    /* Shared Category Badge Style */
    .article-category {
        font-family: var(--font-body);
        font-size: 0.6rem;
        font-weight: 700;
        color: var(--primary-teal);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.75rem;
        display: block;
    }
    
    .featured-title {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--dark-navy);
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .featured-excerpt {
        font-family: var(--font-body);
        font-size: 0.9rem;
        color: #64748B;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .article-byline {
        font-family: var(--font-body);
        font-size: 0.7rem;
        color: #94A3B8;
        font-weight: 500;
    }

    .article-byline a {
        color: var(--primary-teal);
        font-weight: 600;
        text-decoration: none;
    }

    /* --- FILTER BUTTONS --- */
    .article-filters {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .article-filter-btn {
        background-color: #ffffff;
        color: #475569;
        font-family: var(--font-body);
        font-size: 0.8rem;
        font-weight: 600;
        padding: 0.6rem 1.25rem;
        border: 1px solid #E2E8F0;
        border-radius: 50rem; /* Pill shape */
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .article-filter-btn:hover {
        border-color: #B2BDC8;
    }
    
    .article-filter-btn.active {
        background-color: var(--primary-teal);
        color: #ffffff;
        border-color: var(--primary-teal);
    }
    
    /* --- STANDARD ARTICLE CARD --- */
    .article-card {
        background-color: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;
        border: 1px solid rgba(0,0,0,0.03);
        box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    }
    
    .article-img-wrapper {
        height: 200px;
    }
    
    .article-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .article-content {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1; /* Pushes footer down */
    }

    .article-title {
        font-family: var(--font-heading);
        font-size: 1.05rem;
        font-weight: 800;
        color: var(--dark-navy);
        line-height: 1.35;
        margin-bottom: 0.75rem;
    }

    .article-excerpt {
        font-family: var(--font-body);
        font-size: 0.85rem;
        color: #64748B;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .article-footer {
        margin-top: auto; /* Anchors this div to the bottom */
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #F1F5F9; /* Subtle divider */
        padding-top: 1rem;
    }

    .read-time {
        font-family: var(--font-body);
        font-size: 0.7rem;
        font-weight: 500;
        color: #94A3B8;
    }

    .btn-read {
        background-color: var(--primary-teal);
        color: #ffffff !important;
        font-family: var(--font-body);
        font-size: 0.7rem;
        font-weight: 700;
        padding: 0.4rem 0.8rem;
        border-radius: 50rem; /* Pill shape */
        display: flex;
        align-items: center;
        gap: 4px;
        text-decoration: none;
    }

    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
        .featured-content {
            padding: 2rem;
        }
    }
    /* Insights Hub Section Ends */

    /* =========================================
       Speaker Grid Section Starts
       ========================================= */
    .speaker-grid-section {
        background-color: #F8F5F1; /* Soft beige background */
        padding: 5rem 0 6rem 0;
    }

    /* --- FILTER PILLS --- */
    .speaker-filters {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .speaker-filter-pill {
        background-color: #ffffff;
        color: #475569;
        font-family: var(--font-body);
        font-size: 0.8rem;
        font-weight: 600;
        padding: 0.6rem 1.25rem;
        border: 1px solid #E2E8F0;
        border-radius: 50rem; /* Pill shape */
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .speaker-filter-pill:hover {
        border-color: #B2BDC8;
    }

    .speaker-filter-pill.active {
        background-color: var(--primary-teal);
        color: #ffffff;
        border-color: var(--primary-teal);
    }

    /* --- SPEAKER PROFILE CARD --- */
    .speaker-profile-card {
        background-color: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(0, 0, 0, 0.04);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .speaker-profile-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }
    
    .spc-img-wrapper {
        height: 280px;
        position: relative;
    }

    .spc-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .spc-info {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1; /* Pushes the badge down to the bottom */
    }

    .spc-name {
        font-family: var(--font-heading);
        font-size: 1.05rem;
        font-weight: 800;
        color: var(--dark-navy);
        margin-bottom: 0.25rem;
    }

    .spc-role {
        font-family: var(--font-body);
        font-size: 0.8rem;
        color: #64748B;
        margin-bottom: 1.25rem;
    }

    .spc-badge {
        margin-top: auto; /* Anchors the badge to the bottom */
        font-family: var(--font-body);
        background-color: #F0F7F6;
        color: var(--primary-teal);
        font-size: 0.6rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 0.35rem 0.6rem;
        border-radius: 4px;
        align-self: flex-start; /* Prevents badge from stretching */
    }
    
    /* --- CTA BANNER --- */
    .speaker-cta-banner {
        background-color: var(--dark-navy);
        border-radius: 12px;
        padding: 2.5rem 3rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
    
    .speaker-cta-title {
        font-family: var(--font-heading);
        font-size: 1.4rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }
    
    .speaker-cta-text {
        font-family: var(--font-body);
        font-size: 0.9rem;
        color: #B2BDC8;
        line-height: 1.6;
        margin: 0;
    }
    
    .btn-cta-speak {
        background-color: var(--primary-teal);
        color: #ffffff !important;
        font-family: var(--font-body);
        font-size: 0.85rem;
        font-weight: 600;
        padding: 0.8rem 1.6rem;
        border-radius: 6px;
        border: 1px solid var(--primary-teal);
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    .btn-cta-speak:hover {
        background-color: #0a6e63;
        border-color: #0a6e63;
    }

    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
        .speaker-cta-banner {
            flex-direction: column;
            text-align: center;
        }
        .speaker-cta-content {
            margin-bottom: 1.5rem;
        }
    }
    /* Speaker Grid Section Ends */

    /* =========================================
       Contact Section Starts
       ========================================= */
    .contact-section {
        background-color: #ffffff; /* Or use var(--bg-off-white) for a beige feel */
        padding: 6rem 0;
    }

    .contact-section .section-title {
        font-size: clamp(2.2rem, 3.5vw, 3rem); /* Slightly larger title for this layout */
    }

    .contact-subtitle {
        font-family: var(--font-body);
        color: #64748B;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 2.5rem;
    }

    /* Contact Info List (Left Column) */
    .contact-info-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .contact-info-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 1rem;
    }

    .contact-info-list i {
        color: var(--primary-teal);
        font-size: 1.1rem;
    }

    .contact-info-list a {
        font-family: var(--font-body);
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--dark-navy);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .contact-info-list a:hover {
        color: var(--primary-teal);
    }

    /* Form Panel (Right Column) */
    .contact-form-panel {
        background-color: #F1F1F1; /* Exact light gray from screenshot */
        border-radius: 8px;
        padding: 2.5rem;
    }

    /* Custom Form Labels */
    .contact-label {
        font-family: var(--font-body);
        font-size: 0.7rem;
        font-weight: 600;
        color: #64748B;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.5rem;
    }

    /* --- MINIMALIST FORM INPUTS --- */
    .contact-input {
        background-color: #ffffff;
        border: 1px solid transparent; /* No border by default */
        border-radius: 4px;
        padding: 0.8rem 1rem;
        font-family: var(--font-body);
        font-size: 0.9rem;
        color: var(--dark-navy);
        box-shadow: none !important; /* Remove Bootstrap's default focus shadow */
        transition: border-color 0.2s ease;
    }

    .contact-input:focus {
        background-color: #ffffff;
        border-color: var(--primary-teal); /* Add teal border only on focus */
    }

    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
        .contact-section {
            padding: 4.5rem 0;
            text-align: center;
        }
        .contact-info-list {
            justify-content: center;
        }
        .contact-form-panel {
            text-align: left; /* Keep form elements left-aligned inside panel */
        }
    }
    /* Contact Section Ends */

    /* =========================================
       Awards Process Section Starts
       ========================================= */
    .process-section {
        background-color: var(--bg-off-white);
        padding: 6rem 0;
    }

    /* Process Card Styling */
    .process-card {
        background-color: #ffffff;
        border-radius: 8px;
        padding: 2.5rem 2rem;
        text-align: center;
        height: 100%;
        border: 1px solid rgba(0, 0, 0, 0.03);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .process-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    }

    /* Numbered Circle */
    .process-step-circle {
        width: 36px;
        height: 36px;
        background-color: var(--primary-teal);
        color: #ffffff;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Card Typography */
    .process-card-title {
        font-family: var(--font-heading);
        font-size: 0.9rem;
        font-weight: 800;
        color: var(--dark-navy);
        margin-bottom: 0.75rem;
    }

    .process-card-desc {
        font-family: var(--font-body);
        font-size: 0.8rem;
        color: #64748B;
        line-height: 1.6;
        margin: 0 auto;
        max-width: 200px; /* Constrains text width for better readability */
    }

    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
        .process-section {
            padding: 4.5rem 0;
        }
    }
    /* Awards Process Section Ends */

    /* =========================================
       Award Categories Section Starts
       ========================================= */
    .award-categories-section {
        background-color: #ffffff; /* Clean white backdrop */
        padding: 6rem 0;
    }

    /* Horizontal Category Card */
    .category-card {
        display: flex;
        align-items: flex-start;
        background-color: #ffffff;
        border: 1px solid #E2E8F0; /* Thin slate border */
        border-radius: 12px;
        padding: 2.5rem 2rem;
        height: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border-color: #CBD5E1;
    }

    /* Icon Box (Left Side) */
    .category-icon-box {
        width: 48px;
        height: 48px;
        background-color: #F4F1EC; /* Light beige from brand palette */
        border: 1px solid #E2E8F0;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-right: 1.5rem;
    }

    .category-icon-box i {
        color: var(--primary-teal);
        font-size: 1.25rem;
    }

    /* Content Area (Right Side) */
    .category-body {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .category-name {
        font-family: var(--font-heading);
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--dark-navy);
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .category-text {
        font-family: var(--font-body);
        font-size: 0.85rem;
        color: #64748B;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    /* Pill-shaped small button */
    .btn-sm-pill {
        align-self: flex-start;
        padding: 0.5rem 1.25rem;
        font-size: 0.75rem;
        border-radius: 50rem !important; /* Forces the pill shape */
    }

    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
        .category-card {
            padding: 2rem 1.5rem;
        }
    }

    @media (max-width: 575.98px) {
        .category-card {
            flex-direction: column; /* Stack vertically on very small mobile */
            text-align: left;
        }
        .category-icon-box {
            margin-bottom: 1.25rem;
            margin-right: 0;
        }
    }
    /* Award Categories Section Ends */

    /* =========================================
       Nominations CTA Section Starts
       ========================================= */
    .nominations-cta-section {
        background-color: var(--bg-off-white); /* #F4F1EC backdrop */
        padding: 4rem 0 6rem 0;
    }

    .nomination-banner {
        background-color: var(--dark-navy);
        border-radius: 12px;
        padding: 3rem 4rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    /* Text Area */
    .nomination-content {
        max-width: 60%;
    }

    .nomination-title {
        font-family: var(--font-heading);
        color: #ffffff;
        font-size: clamp(1.5rem, 2.5vw, 1.85rem);
        font-weight: 800;
        margin-bottom: 0.75rem;
        letter-spacing: -0.5px;
    }

    .nomination-text {
        font-family: var(--font-body);
        color: #B2BDC8; /* Soft slate gray */
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* Buttons Container */
    .nomination-actions {
        display: flex;
        gap: 1rem;
        flex-wrap: nowrap; /* Keeps buttons on one line on tablet */
    }

    /* Custom Outline Button for Dark Background */
    .btn-nomination-outline {
        background-color: transparent;
        color: #ffffff !important;
        font-family: var(--font-body);
        font-size: 0.85rem;
        font-weight: 600;
        padding: 0.8rem 1.6rem;
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .btn-nomination-outline:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: #ffffff;
    }

    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
        .nomination-banner {
            flex-direction: column;
            text-align: center;
            padding: 3rem 2rem;
        }

        .nomination-content {
            max-width: 100%;
        }

        .nomination-actions {
            width: 100%;
            justify-content: center;
            flex-direction: column; /* Stack buttons on mobile */
        }

        .btn-nomination-outline, 
        .nomination-actions .btn-teal-solid {
            width: 100%; /* Full width buttons for mobile touch targets */
        }
    }
    /* Nominations CTA Section Ends */