
        :root {
            --primary-teal: #3D9B7C;
            --primary-teal-dark: #2B7A63;
            --primary-teal-light: #4AAF8E;
            --accent-gold: #F5B041;
            --accent-gold-light: #FFD580;
            --text-white: #FFFFFF;
            --text-light: #F0F0F0;
            --search-bg: #FFFFFF;

            --primary-dark: #0A0E27;
            --secondary-dark: #1A1F3A;
            --accent-emerald: #10B981;
            --accent-gold: #F59E0B;
            --accent-rose: #F43F5E;
            --text-primary: #F9FAFB;
            --text-secondary: #D1D5DB;
            --text-muted: #9CA3AF;
            --glass-white: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-white);
            overflow-x: hidden;
            line-height: 1.7;
        }

        /* Content Container - 8 of 12 columns for better typography */
        .content-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        /* Navbar Styles */
        .navbar-custom {
            background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
            padding: 1.2rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .navbar-custom .container {
            max-width: 1400px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .navbar-brand {
            flex-shrink: 0;
        }

        .search-wrapper {
            flex: 1;
            max-width: 500px;
        }

        .nav-menu {
            flex-shrink: 0;
            margin-left: auto;
        }

        @media (max-width: 768px) {
            .navbar-custom .container {
                flex-direction: row;
                align-items: center;
                gap: 1rem;
            }

            .navbar-brand {
                flex-shrink: 1;
            }

            .search-wrapper {
                flex: none;
            }

            .nav-menu {
                margin-left: 0;
            }
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-white) !important;
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 0.02em;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
            text-transform: uppercase;
        }

        .logo-icon {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon svg {
            width: 100%;
            height: 100%;
            fill: var(--text-white);
        }

        .search-input {
            width: 100%;
            padding: 0.7rem 1.2rem;
            padding-right: 3rem;
            border: none;
            border-radius: 25px;
            font-size: 0.95rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .search-input::placeholder {
            color: #999;
        }

        .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-teal);
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            background: var(--primary-teal-dark);
            transform: translateY(-50%) scale(1.05);
        }

        .search-btn svg {
            width: 18px;
            height: 18px;
            fill: white;
        }

        .nav-menu {
            display: flex;
            gap: 2.5rem;
            align-items: center;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        @media (max-width: 768px) {
            .nav-menu {
                width: 100%;
                order: 4;
                margin-top: 1rem;
                margin-bottom: 0;
                flex-direction: column;
                gap: 0;
                padding: 0;
                background: rgba(0, 0, 0, 0.2);
                border-radius: 12px;
                overflow: hidden;
                max-height: 0;
                opacity: 0;
                display: flex;
                transition: max-height 0.4s ease-out, opacity 0.3s ease-out, margin-bottom 0.4s ease-out;
            }

            .nav-menu.active {
                max-height: 500px;
                opacity: 1;
                margin-bottom: 0.5rem;
            }
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            color: var(--text-white) !important;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            transition: all 0.3s ease;
        }

        .nav-menu a:hover {
            opacity: 0.85;
        }

        .nav-menu svg {
            width: 12px;
            height: 12px;
            fill: var(--text-white);
        }

        /* Hero Section */
        .hero-section {
            /* background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%); */
            background: #178a63;
            min-height: calc(100vh - 76px);
            display: flex;
            align-items: center;
            padding: 4rem 2rem 6rem;
            position: relative;
            overflow: hidden;
            transition: padding-top 0.3s ease;
        }

        .hero-section .content-container {
            width: 100%;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            min-height: 400px;
        }

        .hero-content>div {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
        }

        @media (max-width: 768px) {
            .hero-content {
                position: static;
                min-height: auto;
            }

            .hero-content>div {
                position: static !important;
            }
        }

        /* Transition classes for Alpine.js */
        .transition {
            transition-property: opacity, transform;
        }

        .ease-out {
            transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
        }

        .ease-in {
            transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
        }

        .duration-300 {
            transition-duration: 300ms;
        }

        .duration-500 {
            transition-duration: 500ms;
        }

        .hero-headline {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0;
            color: var(--text-white);
        }

        .hero-amount {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--accent-gold);
        }

        .hero-subheading {
            font-size: clamp(1rem, 1.8vw, 1.15rem);
            line-height: 1.7;
            color: var(--text-white);
            max-width: 550px;
            margin-bottom: 2.5rem;
        }

        .btn-explore {
            background: var(--accent-gold);
            color: var(--text-white);
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .btn-explore:hover {
            background: var(--accent-gold-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        .btn-dialogue {
            background: var(--primary-teal-dark);
            color: var(--text-white);
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .btn-dialogue:hover {
            background: var(--primary-teal);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        .hero-illustration {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        @media (max-width: 768px) {
            .hero-illustration {
                margin-top: 2rem;
                padding: 1rem 0;
            }
        }

        .hero-image {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
        }

        /* Carousel Indicators */
        .carousel-indicators {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.8rem;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .carousel-indicators li {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid var(--text-white);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-indicators li.active {
            background: var(--text-white);
        }

        .carousel-indicators li:hover {
            transform: scale(1.2);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.75rem;
            cursor: pointer;
            padding: 0.5rem;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .mobile-menu-toggle:hover {
            opacity: 0.8;
            transform: scale(1.1);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .search-wrapper {
                max-width: 300px;
                margin: 0 1rem;
            }

            .nav-menu {
                gap: 1.5rem;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 768px) {
            .navbar-custom {
                padding: 1rem 0;
            }

            .navbar-custom .container {
                flex-direction: row;
                align-items: center;
                gap: 1rem;
                padding: 0 1rem;
                flex-wrap: wrap;
            }

            .navbar-brand {
                font-size: 0.9rem;
                width: auto;
                margin-bottom: 0;
                flex-shrink: 0;
            }

            .navbar-brand img {
                max-height: 35px;
            }

            .search-wrapper {
                flex: 1;
                max-width: none;
                margin: 0;
                order: 2;
            }

            .search-input {
                font-size: 0.85rem;
                padding: 0.6rem 1rem;
                padding-right: 3rem;
            }

            .mobile-menu-toggle {
                display: block;
                order: 3;
            }

            .nav-menu {
                width: 100%;
                order: 4;
                margin-top: 1rem;
                margin-bottom: 0;
                flex-direction: column;
                gap: 0;
                padding: 0;
                background: rgba(0, 0, 0, 0.2);
                border-radius: 12px;
                overflow: hidden;
                max-height: 0;
                opacity: 0;
                display: flex;
                transition: max-height 0.4s ease-out, opacity 0.3s ease-out, margin-bottom 0.4s ease-out;
            }

            .nav-menu.active {
                max-height: 500px;
                opacity: 1;
                margin-bottom: 0.5rem;
            }

            .nav-menu li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-menu li:last-child {
                border-bottom: none;
            }

            .nav-menu a {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1rem 1.25rem;
                font-size: 0.95rem;
                width: 100%;
                transition: background 0.2s ease;
            }

            .nav-menu a:hover {
                background: rgba(255, 255, 255, 0.1);
            }

            .hero-section {
                padding: 3rem 1rem 4rem;
                min-height: auto;
            }

            .hero-content {
                min-height: auto;
                position: static !important;
            }

            .hero-content > div {
                position: static !important;
            }

            .hero-section .row {
                flex-direction: column;
            }

            .hero-section .col-lg-8 {
                width: 100%;
                order: 1;
                margin-bottom: 2rem;
            }

            .hero-section .col-lg-4 {
                width: 100%;
                order: 2;
            }

            .hero-headline,
            .hero-amount {
                font-size: 1.75rem;
            }

            .hero-subheading {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }

            .hero-illustration {
                margin-top: 0;
            }

            .hero-image {
                max-width: 80%;
                margin: 0 auto;
                display: block;
            }

            .carousel-indicators {
                bottom: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .navbar-brand {
                font-size: 0.75rem;
            }

            .navbar-brand img {
                max-height: 28px;
            }

            .search-input {
                font-size: 0.8rem;
                padding: 0.5rem 0.875rem;
                padding-right: 2.5rem;
            }

            .search-btn {
                width: 30px;
                height: 30px;
            }

            .search-btn svg {
                width: 16px;
                height: 16px;
            }

            .mobile-menu-toggle {
                font-size: 1.5rem;
                padding: 0.25rem;
            }

            .hero-headline,
            .hero-amount {
                font-size: 1.5rem;
            }

            .hero-subheading {
                font-size: 0.9rem;
            }

            .btn-explore {
                padding: 0.875rem 2rem;
                font-size: 0.9rem;
            }

            .hero-image {
                max-width: 100%;
            }
        }

        /* Features Grid Section */
        .features-section {
            padding: 8rem 2rem;
            background: var(--secondary-dark);
            position: relative;
        }

        .features-section .content-container {
            max-width: 1200px;
        }

        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--glass-border) 50%, transparent 100%);
        }

        .section-header {
            text-align: center;
            margin: 0 auto 5rem;
        }

        .section-eyebrow {
            font-size: 0.875rem;
            color: var(--accent-emerald);
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            font-family: 'Playfair Display', serif;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .section-description {
            font-size: 1.25rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Premium Feature Cards */
        .features-grid {
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: var(--glass-white);
            backdrop-filter: blur(30px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-emerald), var(--accent-gold), var(--accent-rose));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--accent-emerald) 0%, #059669 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
        }

        .feature-card:nth-child(2) .feature-icon {
            background: linear-gradient(135deg, var(--accent-gold) 0%, #D97706 100%);
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
        }

        .feature-card:nth-child(3) .feature-icon {
            background: linear-gradient(135deg, var(--accent-rose) 0%, #E11D48 100%);
            box-shadow: 0 10px 30px rgba(244, 63, 94, 0.3);
        }

        .feature-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }

        .feature-description {
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .feature-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--glass-border);
        }

        .feature-time {
            font-size: 0.875rem;
            color: var(--text-muted);
            font-weight: 600;
        }

        .feature-arrow {
            margin-left: auto;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--glass-white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-arrow {
            background: var(--accent-emerald);
            transform: translateX(5px);
        }

        /* CTA Section */
        .cta-section {
            padding: 10rem 2rem;
            background: var(--primary-teal-dark);
            text-align: center;
            position: relative;
        }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            font-family: 'Playfair Display', serif;
            line-height: 1.2;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
        }

        .cta-description {
            font-size: 1.5rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Latest Section */
        .latest-section {
            background: #3D8A7C;
            padding: 6rem 2rem;
            position: relative;
        }

        .latest-section .content-container {
            max-width: 1200px;
        }

        .latest-header {
            margin-bottom: 3rem;
        }

        .latest-title {
            font-size: clamp(3rem, 6vw, 4rem);
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }

        .latest-subtitle {
            font-size: 1rem;
            color: var(--text-white);
            font-weight: 400;
        }

        .latest-subtitle a {
            color: var(--text-white);
            text-decoration: underline;
            margin-left: 0.3rem;
        }

        .latest-subtitle a:hover {
            opacity: 0.85;
        }

        /* Latest Cards Grid */
        .latest-grid {
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .latest-card {
            background: #FFFFFF;
            position: relative;
            overflow: hidden;
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .latest-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .latest-card-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            background: #E5E7EB;
        }

        .latest-card-content {
            padding: 2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .latest-card-tag {
            background: #3D8A7C;
            color: #FFFFFF;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.5rem 1rem;
            display: inline-block;
            align-self: flex-start;
            margin-bottom: 1.5rem;
        }

        .latest-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1A1A1A;
            line-height: 1.4;
            margin-bottom: 1.5rem;
            font-family: 'Playfair Display', serif;
        }

        .latest-card-footer {
            margin-top: auto;
        }

        .latest-card-divider {
            width: 50px;
            height: 3px;
            background: #3D8A7C;
            margin-bottom: 1rem;
        }

        .latest-card-link {
            color: #3D8A7C;
            font-size: 0.875rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .latest-card-link:hover {
            opacity: 0.8;
            transform: translateX(5px);
        }

        /* Responsive Design for Latest Section */
        @media (max-width: 1200px) {
            .latest-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .latest-section {
                padding: 4rem 1.5rem;
            }

            .latest-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .latest-title {
                font-size: 2.5rem;
            }

            .features-section {
                padding: 4rem 1.5rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .section-header {
                margin-bottom: 3rem;
            }
        }

        /* Reality Section */
        .reality-section {
            background: #1A1F3A;
            padding: 8rem 2rem;
            position: relative;
        }

        .reality-section .content-container {
            max-width: 1200px;
        }

        .reality-header {
            margin-bottom: 4rem;
        }

        .reality-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            color: var(--text-white);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .reality-subtitle {
            font-size: 1rem;
            line-height: 1.6;
        }

        .reality-subtitle-highlight {
            color: #F5B041;
            font-weight: 500;
        }

        .reality-subtitle-text {
            color: var(--text-white);
        }

        /* Reality Cards Grid */
        .reality-grid {
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .reality-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 3rem;
            transition: all 0.3s ease;
        }

        .reality-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .reality-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: linear-gradient(135deg, #10B981 0%, #059669 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
        }

        .reality-icon svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        .reality-stat {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }

        .reality-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-white);
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .reality-description {
            font-size: 0.95rem;
            color: #9CA3AF;
            line-height: 1.6;
        }

        /* Responsive Design for Reality Section */
        @media (max-width: 1200px) {
            .reality-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .reality-section {
                padding: 4rem 1.5rem;
            }

            .reality-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .reality-title {
                font-size: 2.5rem;
            }

            .reality-card {
                padding: 2rem;
            }

            .cta-section {
                padding: 5rem 1.5rem;
            }

            .cta-title {
                font-size: 2rem;
            }

            .cta-description {
                font-size: 1.1rem;
            }
        }

        /* ============================================
           HOMEPAGE RESOURCES SECTION
           ============================================ */

        .resources-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .resources-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .resources-header .section-eyebrow {
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #6c757d;
            margin-bottom: 16px;
        }

        .resources-header .section-title {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #212529;
        }

        .resources-header .section-description {
            font-size: 1.125rem;
            line-height: 1.8;
            color: #495057;
        }

        /* Single Resource Card */
        .resource-card-single {
            background: #ffffff;
            border: 1px solid #e9ecef;
            border-radius: 16px;
            padding: 40px;
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            gap: 40px;
            transition: all 0.3s ease;
        }

        .resource-card-single:hover {
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }

        /* PDF Thumbnail */
        .resource-thumbnail {
            position: relative;
            width: 280px;
            flex-shrink: 0;
        }

        .resource-thumbnail img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            border: 1px solid #e9ecef;
        }

        .resource-page-badge {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(0, 0, 0, 0.8);
            color: #ffffff;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            backdrop-filter: blur(4px);
        }

        .resource-card-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
            flex: 1;
        }

        .resource-info {
            flex: 1;
        }

        .resource-type-badge {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #6c757d;
            background: #f8f9fa;
            padding: 6px 16px;
            border-radius: 12px;
            margin-bottom: 12px;
        }

        .resource-title-large {
            font-size: 1.75rem;
            font-weight: 700;
            line-height: 1.3;
            color: #212529;
            margin-bottom: 12px;
            font-family: 'Inter', sans-serif;
        }

        .resource-description-large {
            font-size: 1rem;
            line-height: 1.7;
            color: #6c757d;
            margin-bottom: 16px;
        }

        .resource-meta-inline {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .resource-meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.875rem;
            color: #6c757d;
        }

        .resource-meta-item svg {
            width: 16px;
            height: 16px;
            stroke: #6c757d;
        }

        .resource-download-btn-large {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #ffffff;
            text-decoration: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .resource-download-btn-large svg {
            width: 20px;
            height: 20px;
            stroke: #ffffff;
        }

        .resource-download-btn-large:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
            color: #ffffff;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .resource-card-single {
                flex-direction: column;
                padding: 32px;
            }

            .resource-thumbnail {
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
            }

            .resource-download-btn-large {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .resources-section {
                padding: 60px 0;
            }

            .resources-header {
                margin-bottom: 40px;
            }

            .resources-header .section-title {
                font-size: 2.25rem;
            }

            .resource-card-single {
                padding: 24px;
            }

            .resource-thumbnail {
                max-width: 300px;
            }

            .resource-title-large {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .resources-header .section-title {
                font-size: 1.875rem;
            }

            .resource-thumbnail {
                max-width: 100%;
            }

            .resource-title-large {
                font-size: 1.25rem;
            }

            .resource-description-large {
                font-size: 0.9375rem;
            }

            .resource-meta-inline {
                flex-direction: column;
                gap: 8px;
            }
        }
        /* Footer Section */
        .footer-section {
            background: #2C3550;
            padding: 5rem 4rem 2rem;
            color: var(--text-white);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        /* Footer Brand Column */
        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-white);
            text-transform: uppercase;
            letter-spacing: 0.02em;
            line-height: 1.2;
        }

        .footer-logo-icon {
            width: 40px;
            height: 40px;
        }

        .footer-logo-icon svg {
            width: 100%;
            height: 100%;
            fill: white;
        }

        .footer-description {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--text-light);
            max-width: 400px;
        }

        .footer-powered {
            font-size: 0.875rem;
            text-decoration: none;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: opacity 0.3s ease;
        }

        .footer-powered-logo {
            height: 24px;
            width: auto;
            margin-right: 8px;
            vertical-align: middle;
        }

        .footer-powered:hover {
            opacity: 0.8;
        }

        .footer-powered svg {
            width: 16px;
            height: 16px;
            fill: white;
        }

        /* Footer Links Columns */
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-links-title {
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-white);
            margin-bottom: 0.5rem;
        }

        .footer-links-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links-list a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links-list a:hover {
            color: var(--text-white);
            transform: translateX(5px);
        }

        /* Footer Social Column */
        .footer-social {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-social-title {
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-white);
        }

        .footer-social-icons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .footer-social-icon {
            width: 44px;
            height: 44px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .footer-social-icon:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .footer-social-icon svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        /* Footer Bottom */
        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-copyright {
            font-size: 0.875rem;
            color: var(--text-light);
            text-align: left;
        }

        /* Responsive Design for Footer */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .footer-section {
                padding: 3rem 2rem 2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-social-icons {
                justify-content: flex-start;
            }

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