        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

        :root {
            --primary-green: #295240;
            --accent-orange: #f48221;
            --text-dark: #333333;
            --text-light: #fdfdfd;
            --bg-light: #fffaf0;
            --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            --hover-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }

        .container {
            max-width: 1200px;
            margin: auto;
            overflow: hidden;
            padding: 5px 20px;
        }

        h1,
        h2,
        h3 {
            color: var(--primary-green);
            margin-bottom: 20px;
        }

        h2 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
        }

        p {
            margin-bottom: 15px;
        }

        section {
            padding: 80px 0;
        }

        .section-subtitle {
            text-align: center;
            color: var(--accent-orange);
            font-weight: 600;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: var(--accent-orange);
            color: white;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(244, 130, 33, 0.3);
            font-size: 1rem;
        }

        .btn:hover {
            background-color: #d66d13;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(244, 130, 33, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
            box-shadow: none;
            color: var(--primary-green, #295240);
            border: 2px solid var(--primary-green, #295240);
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary-green);
        }

        .btn-large {
            padding: 16px 40px;
            font-size: 1.1rem;
        }

        /* Custom Home Page Styles (Navbar styles removed as they are now in components.css) */
        .logo-green-accent {
            color: var(--primary-green);
            /* font-family: "Franklin Gothic Medium"; */
        }

        .logo-orange-accent {
            color: var(--accent-orange);
            /* font-family: "Franklin Gothic Medium"; */
        }

        /* Mobile menu toggle (hidden on desktop) */
        .menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: var(--primary-green);
            font-size: 1.8rem;
            line-height: 1;
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 8px;
        }

        .menu-toggle:focus {
            outline: 2px solid var(--accent-orange);
            outline-offset: 2px;
        }

        /* Hero Section */
        #hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(41, 82, 64, 0.85), rgba(244, 130, 33, 0.8)), url('/images/hero-background.jpg') no-repeat center center/cover;
            position: relative;
            padding-top: 60px;
            overflow: hidden;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-rows: auto auto;
            gap: 30px;
            align-items: center;
            justify-items: center;
            text-align: center;
            max-width: 1400px;
            margin: 50px auto;
        }

        .hero-main {
            grid-row: 1;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 30px;
            max-width: 100%;
            justify-content: center;
            align-items: center;
        }

        /* Banner row - both carousels side by side */
        .banner-row {
            grid-row: 2;
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
            justify-items: center;
            width: 100%;
            max-width: 1400px;
        }

        .circling-banners {
            justify-self: center;
        }

        .hero-banners {
            justify-self: center;
        }

        /* Hero Banners Curved Carousel */
        .hero-banners {
            position: relative;
            width: 100%;
            max-width: 1000px;
            height: 220px;
            margin: 0 auto;
            perspective: 1200px;
            overflow: hidden;
        }

        .hero-banners-container {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
            animation: heroCarouselRotate 25s linear infinite;
        }

        @keyframes heroCarouselRotate {
            0% {
                transform: rotateY(0deg);
            }

            100% {
                transform: rotateY(360deg);
            }
        }

        .hero-banner {
            position: absolute;
            width: 200px;
            height: 110px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 25px;
            padding: 20px;
            backdrop-filter: blur(15px);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .hero-banner:hover::before {
            left: 100%;
        }

        .hero-banner:nth-child(1) {
            transform: rotateY(0deg) translateZ(300px);
        }

        .hero-banner:nth-child(2) {
            transform: rotateY(51deg) translateZ(300px);
        }

        .hero-banner:nth-child(3) {
            transform: rotateY(102deg) translateZ(300px);
        }

        .hero-banner:nth-child(4) {
            transform: rotateY(153deg) translateZ(300px);
        }

        .hero-banner:nth-child(5) {
            transform: rotateY(204deg) translateZ(300px);
        }

        .hero-banner:nth-child(6) {
            transform: rotateY(255deg) translateZ(300px);
        }

        .hero-banner:nth-child(7) {
            transform: rotateY(306deg) translateZ(300px);
        }

        .hero-banner:hover {
            transform: rotateY(var(--rotation)) translateZ(330px) scale(1.05);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.15));
            border-color: var(--accent-orange);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        }

        .hero-banner:nth-child(1):hover {
            --rotation: 0deg;
        }

        .hero-banner:nth-child(2):hover {
            --rotation: 51deg;
        }

        .hero-banner:nth-child(3):hover {
            --rotation: 102deg;
        }

        .hero-banner:nth-child(4):hover {
            --rotation: 153deg;
        }

        .hero-banner:nth-child(5):hover {
            --rotation: 204deg;
        }

        .hero-banner:nth-child(6):hover {
            --rotation: 255deg;
        }

        .hero-banner:nth-child(7):hover {
            --rotation: 306deg;
        }

        /* Pause animation on hover */
        .hero-banners:hover .hero-banners-container {
            animation-play-state: paused;
        }

        .hero-content {
            padding: 50px 60px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
            border: 2px solid rgba(255, 255, 255, 0.25);
            border-radius: 25px;
            box-shadow:
                0 20px 50px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            max-width: 900px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .hero-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
        }

        .hero-content::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 165, 0, 0.05) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            50% {
                transform: translate(-20px, -20px) rotate(180deg);
            }
        }

        .hero-brand {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            background-color: rgba(255, 250, 240, 0.95);
            border-radius: 10px;
            -webkit-box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 23px 27px -4px rgba(255, 250, 240, 0);
            box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 23px 27px -4px rgba(255, 250, 240, 0);
        }

        .hero-brand img {
            height: 100px;
            width: auto;
            filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
            transition: transform 0.3s ease;
        }

        .hero-brand:hover img {
            transform: scale(1.05);
        }

        #hero h1 {
            font-size: 3.2rem;
            margin-bottom: 12px;
            color: white;
            font-weight: 800;
            text-shadow:
                2px 2px 4px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(255, 165, 0, 0.2);
            letter-spacing: -0.5px;
            line-height: 1.1;
            position: relative;
            z-index: 1;
        }

        #hero .tagline {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 400;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        #hero .tagline::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
        }

        #hero p {
            font-size: 1.15rem;
            margin-bottom: 40px;
            opacity: 0.9;
            color: rgba(255, 255, 255, 0.85);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        #hero .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        #hero .btn-large {
            padding: 16px 32px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: none;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        #hero .btn-large::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        #hero .btn-large:hover::before {
            left: 100%;
        }

        #hero .btn-large:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
        }

        #hero .btn-secondary.btn-large {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        #hero .btn-secondary.btn-large:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Hero Banners */
        .hero-banner {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 25px;
            backdrop-filter: blur(15px);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s;
        }

        .hero-banner:hover::before {
            left: 100%;
        }

        .hero-banner:hover {
            transform: translateY(-8px) scale(1.02);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            border-color: var(--accent-orange);
        }

        .banner-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .banner-icon {
            font-size: 2.2rem;
            color: var(--accent-orange);
            animation: bounce 2s infinite;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-5px);
            }

            60% {
                transform: translateY(-3px);
            }
        }

        .banner-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
        }

        .banner-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 12px;
        }

        .banner-offer {
            background: linear-gradient(45deg, var(--accent-orange), #ff6b35);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 700;
            position: absolute;
            top: 15px;
            right: 15px;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
            }

            50% {
                box-shadow: 0 4px 20px rgba(255, 107, 53, 0.6);
            }

            100% {
                box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
            }
        }

        .banner-cta {
            color: white;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 8px;
        }

        .banner-cta:hover {
            color: var(--accent-orange);
        }

        /* Horizontal Banner Strip */
        .horizontal-banners {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            overflow-x: auto;
            padding-bottom: 10px;
        }

        .horizontal-banners::-webkit-scrollbar {
            height: 6px;
        }

        .horizontal-banners::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
        }

        .horizontal-banners::-webkit-scrollbar-thumb {
            background: var(--accent-orange);
            border-radius: 3px;
        }

        .horizontal-banner {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 15px 20px;
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
            cursor: pointer;
            min-width: 200px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .horizontal-banner:hover {
            background: rgba(255, 255, 255, 0.18);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .horizontal-banner-icon {
            font-size: 1.5rem;
            color: var(--accent-orange);
            flex-shrink: 0;
        }

        .horizontal-banner-content {
            flex: 1;
        }

        .horizontal-banner-title {
            font-size: 1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 4px;
        }

        .horizontal-banner-text {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .horizontal-banner-badge {
            background: var(--accent-orange);
            color: white;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            flex-shrink: 0;
        }

        /* Top Banner Strip */
        .top-banner-strip {
            background: linear-gradient(90deg, var(--accent-orange), #d66d13);
            color: white;
            padding: 8px 0;
            text-align: center;
            font-size: 0.75rem;
            font-weight: 600;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .top-banner-strip::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }

            100% {
                left: 100%;
            }
        }

        .top-banner-content {
            position: relative;
            z-index: 1;
            padding: 0 20px;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Circling Banners Curved Carousel */
        .circling-banners {
            position: relative;
            width: 100%;
            max-width: 1200px;
            height: 280px;
            margin: 0 auto;
            perspective: 1600px;
            /* overflow: hidden; */
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
            animation: curvedCarouselRotate 20s linear infinite;
        }

        @keyframes curvedCarouselRotate {
            0% {
                transform: rotateY(0deg);
            }

            100% {
                transform: rotateY(360deg);
            }
        }

        .carousel-banner {
            position: absolute;
            width: 220px;
            height: 120px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 18px;
            backdrop-filter: blur(15px);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 14px;
            overflow: hidden;
        }

        .carousel-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .carousel-banner:hover::before {
            left: 100%;
        }

        .carousel-banner:nth-child(1) {
            transform: rotateY(0deg) translateZ(450px);
        }

        .carousel-banner:nth-child(2) {
            transform: rotateY(45deg) translateZ(450px);
        }

        .carousel-banner:nth-child(3) {
            transform: rotateY(90deg) translateZ(450px);
        }

        .carousel-banner:nth-child(4) {
            transform: rotateY(135deg) translateZ(450px);
        }

        .carousel-banner:nth-child(5) {
            transform: rotateY(180deg) translateZ(450px);
        }

        .carousel-banner:nth-child(6) {
            transform: rotateY(225deg) translateZ(450px);
        }

        .carousel-banner:nth-child(7) {
            transform: rotateY(270deg) translateZ(450px);
        }

        .carousel-banner:nth-child(8) {
            transform: rotateY(315deg) translateZ(450px);
        }

        .carousel-banner:hover {
            transform: rotateY(var(--rotation)) translateZ(480px) scale(1.1);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15));
            border-color: var(--accent-orange);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .carousel-banner:nth-child(1):hover {
            --rotation: 0deg;
        }

        .carousel-banner:nth-child(2):hover {
            --rotation: 45deg;
        }

        .carousel-banner:nth-child(3):hover {
            --rotation: 90deg;
        }

        .carousel-banner:nth-child(4):hover {
            --rotation: 135deg;
        }

        .carousel-banner:nth-child(5):hover {
            --rotation: 180deg;
        }

        .carousel-banner:nth-child(6):hover {
            --rotation: 225deg;
        }

        .carousel-banner:nth-child(7):hover {
            --rotation: 270deg;
        }

        .carousel-banner:nth-child(8):hover {
            --rotation: 315deg;
        }

        .carousel-banner-icon {
            font-size: 1.6rem;
            color: var(--accent-orange);
            flex-shrink: 0;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
            animation: iconPulse 2s infinite;
        }

        @keyframes iconPulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .carousel-banner-text {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .carousel-banner-title {
            font-size: 0.9rem;
            font-weight: 700;
            color: white;
            line-height: 1.2;
            white-space: nowrap;
            /* overflow: hidden; */
            text-overflow: ellipsis;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 2px;
        }

        .carousel-banner-description {
            font-size: 0.75rem;
            line-height: 1.3;
            color: rgba(255, 255, 255, 0.9);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 4px;
        }

        .carousel-banner-text .banner-cta {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
            margin-top: 2px;
            display: inline-block;
        }

        .carousel-banner-text .banner-cta:hover {
            color: var(--accent-orange);
        }

        .carousel-banner-badge {
            position: absolute;
            top: 3px;
            right: 8px;
            background: linear-gradient(45deg, var(--accent-orange), #ff6b35);
            color: white;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
            flex-shrink: 0;
            z-index: -199;
        }

        /* Pause animation on hover */
        .circling-banners:hover .carousel-container {
            animation-play-state: paused;
        }

        /* Circular Banner Orbit */
        .circular-orbit {
            position: relative;
            width: 220px;
            height: 220px;
            margin: 0 auto;
            pointer-events: none;
        }

        .circular-orbit::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 180px;
            height: 180px;
            border: 2px dashed rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: rotate-dashed 20s linear infinite;
        }

        @keyframes rotate-dashed {
            0% {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            100% {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        .orbit-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 55px;
            height: 55px;
            background: var(--accent-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 0.7rem;
            z-index: 10;
            box-shadow: 0 0 30px rgba(244, 130, 33, 0.5);
            pointer-events: auto;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .orbit-center:hover {
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 0 40px rgba(244, 130, 33, 0.7);
        }

        .orbit-banner {
            position: absolute;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backdrop-filter: blur(12px);
            pointer-events: auto;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .orbit-banner::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--accent-orange), transparent, var(--accent-orange));
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .orbit-banner:hover::before {
            opacity: 1;
        }

        .orbit-banner:hover {
            transform: scale(1.2);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15));
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
            border-color: var(--accent-orange);
        }

        .orbit-banner-icon {
            font-size: 1.1rem;
            color: var(--accent-orange);
            margin-bottom: 2px;
            filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
            transition: transform 0.3s ease;
        }

        .orbit-banner:hover .orbit-banner-icon {
            transform: scale(1.1);
        }

        .orbit-banner-text {
            font-size: 0.5rem;
            color: white;
            font-weight: 700;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Orbit animations */
        .orbit-banner:nth-child(2) {
            animation: orbit1 8s linear infinite;
        }

        .orbit-banner:nth-child(3) {
            animation: orbit2 10s linear infinite;
        }

        .orbit-banner:nth-child(4) {
            animation: orbit3 12s linear infinite;
        }

        .orbit-banner:nth-child(5) {
            animation: orbit4 9s linear infinite;
        }

        .orbit-banner:nth-child(6) {
            animation: orbit5 11s linear infinite;
        }

        @keyframes orbit1 {
            0% {
                transform: rotate(0deg) translateX(75px) rotate(0deg);
            }

            100% {
                transform: rotate(360deg) translateX(75px) rotate(-360deg);
            }
        }

        @keyframes orbit2 {
            0% {
                transform: rotate(72deg) translateX(75px) rotate(-72deg);
            }

            100% {
                transform: rotate(432deg) translateX(75px) rotate(-432deg);
            }
        }

        @keyframes orbit3 {
            0% {
                transform: rotate(144deg) translateX(75px) rotate(-144deg);
            }

            100% {
                transform: rotate(504deg) translateX(75px) rotate(-504deg);
            }
        }

        @keyframes orbit4 {
            0% {
                transform: rotate(216deg) translateX(75px) rotate(-216deg);
            }

            100% {
                transform: rotate(576deg) translateX(75px) rotate(-576deg);
            }
        }

        @keyframes orbit5 {
            0% {
                transform: rotate(288deg) translateX(75px) rotate(-288deg);
            }

            100% {
                transform: rotate(648deg) translateX(75px) rotate(-648deg);
            }
        }

        /* Responsive Circling Banners */
        @media(max-width: 968px) {
            .circling-banners {
                height: 240px;
                max-width: 900px;
            }

            .carousel-banner {
                width: 180px;
                height: 100px;
                padding: 12px;
            }

            .carousel-banner:nth-child(1) {
                transform: rotateY(0deg) translateZ(280px);
            }

            .carousel-banner:nth-child(2) {
                transform: rotateY(45deg) translateZ(280px);
            }

            .carousel-banner:nth-child(3) {
                transform: rotateY(90deg) translateZ(280px);
            }

            .carousel-banner:nth-child(4) {
                transform: rotateY(135deg) translateZ(280px);
            }

            .carousel-banner:nth-child(5) {
                transform: rotateY(180deg) translateZ(280px);
            }

            .carousel-banner:nth-child(6) {
                transform: rotateY(225deg) translateZ(280px);
            }

            .carousel-banner:nth-child(7) {
                transform: rotateY(270deg) translateZ(280px);
            }

            .carousel-banner:nth-child(8) {
                transform: rotateY(315deg) translateZ(280px);
            }

            .carousel-banner:hover {
                transform: rotateY(var(--rotation)) translateZ(300px) scale(1.1);
            }

            .carousel-banner-icon {
                font-size: 1.4rem;
            }

            .carousel-banner-title {
                font-size: 0.8rem;
            }

            .carousel-banner-description {
                font-size: 0.7rem;
                -webkit-line-clamp: 2;
                line-clamp: 2;
            }

            .carousel-banner-text .banner-cta {
                font-size: 0.65rem;
            }

            .hero-banners {
                height: 200px;
                max-width: 800px;
            }

            .hero-banner {
                width: 180px;
                height: 100px;
                padding: 18px;
            }

            .hero-banner:nth-child(1) {
                transform: rotateY(0deg) translateZ(250px);
            }

            .hero-banner:nth-child(2) {
                transform: rotateY(51deg) translateZ(250px);
            }

            .hero-banner:nth-child(3) {
                transform: rotateY(102deg) translateZ(250px);
            }

            .hero-banner:nth-child(4) {
                transform: rotateY(153deg) translateZ(250px);
            }

            .hero-banner:nth-child(5) {
                transform: rotateY(204deg) translateZ(250px);
            }

            .hero-banner:nth-child(6) {
                transform: rotateY(255deg) translateZ(250px);
            }

            .hero-banner:nth-child(7) {
                transform: rotateY(306deg) translateZ(250px);
            }

            .hero-banner:hover {
                transform: rotateY(var(--rotation)) translateZ(270px) scale(1.05);
            }

            .circular-orbit {
                width: 200px;
                height: 200px;
            }

            .orbit-center {
                width: 55px;
                height: 55px;
                font-size: 0.8rem;
            }

            .orbit-banner {
                width: 55px;
                height: 55px;
            }

            @keyframes orbit1 {
                0% {
                    transform: rotate(0deg) translateX(90px) rotate(0deg);
                }

                100% {
                    transform: rotate(360deg) translateX(90px) rotate(-360deg);
                }
            }

            @keyframes orbit2 {
                0% {
                    transform: rotate(72deg) translateX(90px) rotate(-72deg);
                }

                100% {
                    transform: rotate(432deg) translateX(90px) rotate(-432deg);
                }
            }

            @keyframes orbit3 {
                0% {
                    transform: rotate(144deg) translateX(90px) rotate(-144deg);
                }

                100% {
                    transform: rotate(504deg) translateX(90px) rotate(-504deg);
                }
            }

            @keyframes orbit4 {
                0% {
                    transform: rotate(216deg) translateX(90px) rotate(-216deg);
                }

                100% {
                    transform: rotate(576deg) translateX(90px) rotate(-576deg);
                }
            }

            @keyframes orbit5 {
                0% {
                    transform: rotate(288deg) translateX(90px) rotate(-288deg);
                }

                100% {
                    transform: rotate(648deg) translateX(90px) rotate(-648deg);
                }
            }
        }

        @media(max-width: 640px) {
            .circling-banners {
                height: 200px;
                max-width: 600px;
            }

            @keyframes orbit5 {
                0% {
                    transform: rotate(288deg) translateX(100px) rotate(-288deg);
                }

                100% {
                    transform: rotate(648deg) translateX(100px) rotate(-648deg);
                }
            }

            .carousel-banner {
                width: 160px;
                height: 90px;
                padding: 10px;
            }

            .carousel-banner:nth-child(1) {
                transform: rotateY(0deg) translateZ(200px);
            }

            .carousel-banner:nth-child(2) {
                transform: rotateY(45deg) translateZ(200px);
            }

            .carousel-banner:nth-child(3) {
                transform: rotateY(90deg) translateZ(200px);
            }

            .carousel-banner:nth-child(4) {
                transform: rotateY(135deg) translateZ(200px);
            }

            .carousel-banner:nth-child(5) {
                transform: rotateY(180deg) translateZ(200px);
            }

            .carousel-banner:nth-child(6) {
                transform: rotateY(225deg) translateZ(200px);
            }

            .carousel-banner:nth-child(7) {
                transform: rotateY(270deg) translateZ(200px);
            }

            .carousel-banner:nth-child(8) {
                transform: rotateY(315deg) translateZ(200px);
            }

            .carousel-banner:hover {
                transform: rotateY(var(--rotation)) translateZ(220px) scale(1.1);
            }

            .carousel-banner-icon {
                font-size: 1.2rem;
            }

            .carousel-banner-title {
                font-size: 0.75rem;
            }

            .carousel-banner-description {
                font-size: 0.65rem;
                -webkit-line-clamp: 1;
                line-clamp: 1;
            }

            .carousel-banner-text .banner-cta {
                font-size: 0.6rem;
            }

            .carousel-banner-badge {
                font-size: 0.5rem;
                padding: 2px 5px;
            }

            .banner-row {
                gap: 20px;
            }

            .circular-orbit {
                width: 200px;
                height: 200px;
            }

            .orbit-center {
                width: 50px;
                height: 50px;
                font-size: 0.7rem;
            }

            .orbit-banner {
                width: 50px;
                height: 50px;
            }

            .orbit-banner-icon {
                font-size: 1.2rem;
            }

            .orbit-banner-text {
                font-size: 0.6rem;
            }

            .top-banner-strip {
                font-size: 0.65rem;
                padding: 6px 0;
            }

            @keyframes orbit1 {
                0% {
                    transform: rotate(0deg) translateX(80px) rotate(0deg);
                }

                100% {
                    transform: rotate(360deg) translateX(80px) rotate(-360deg);
                }
            }

            @keyframes orbit2 {
                0% {
                    transform: rotate(72deg) translateX(80px) rotate(-72deg);
                }

                100% {
                    transform: rotate(432deg) translateX(80px) rotate(-432deg);
                }
            }

            @keyframes orbit3 {
                0% {
                    transform: rotate(144deg) translateX(80px) rotate(-144deg);
                }

                100% {
                    transform: rotate(504deg) translateX(80px) rotate(-504deg);
                }
            }

            @keyframes orbit4 {
                0% {
                    transform: rotate(216deg) translateX(80px) rotate(-216deg);
                }

                100% {
                    transform: rotate(576deg) translateX(80px) rotate(-576deg);
                }
            }

            @keyframes orbit5 {
                0% {
                    transform: rotate(288deg) translateX(80px) rotate(-288deg);
                }

                100% {
                    transform: rotate(648deg) translateX(80px) rotate(-648deg);
                }
            }
        }

        /* Responsive Hero */
        @media(max-width: 968px) {
            .hero-container {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto;
                gap: 25px;
                text-align: center;
            }

            .hero-main {
                grid-row: 1;
                text-align: center;
            }

            .banner-row {
                grid-row: 2;
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .hero-brand {
                align-items: center;
            }

            #hero h1 {
                font-size: 2.8rem;
            }

            #hero .tagline {
                font-size: 1.3rem;
            }

            #hero .hero-buttons {
                justify-content: center;
            }

            .hero-brand img {
                height: 100px;
            }

            .hero-banners {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .hero-banners {
                height: 200px;
                max-width: 700px;
            }

            .hero-banner {
                width: 180px;
                height: 110px;
                padding: 18px;
            }

            .hero-banner:nth-child(1) {
                transform: rotateY(0deg) translateZ(250px);
            }

            .hero-banner:nth-child(2) {
                transform: rotateY(51deg) translateZ(250px);
            }

            .hero-banner:nth-child(3) {
                transform: rotateY(102deg) translateZ(250px);
            }

            .hero-banner:nth-child(4) {
                transform: rotateY(153deg) translateZ(250px);
            }

            .hero-banner:nth-child(5) {
                transform: rotateY(204deg) translateZ(250px);
            }

            .hero-banner:nth-child(6) {
                transform: rotateY(255deg) translateZ(250px);
            }

            .hero-banner:nth-child(7) {
                transform: rotateY(306deg) translateZ(250px);
            }

            .hero-banner:hover {
                transform: rotateY(var(--rotation)) translateZ(270px) scale(1.05);
            }

            .circular-orbit {
                width: 200px;
                height: 200px;
            }

            .orbit-center {
                width: 55px;
                height: 55px;
                font-size: 0.8rem;
            }

            .orbit-banner {
                width: 55px;
                height: 55px;
            }

            @keyframes orbit1 {
                0% {
                    transform: rotate(0deg) translateX(90px) rotate(0deg);
                }

                100% {
                    transform: rotate(360deg) translateX(90px) rotate(-360deg);
                }
            }

            @keyframes orbit2 {
                0% {
                    transform: rotate(72deg) translateX(90px) rotate(-72deg);
                }

                100% {
                    transform: rotate(432deg) translateX(90px) rotate(-432deg);
                }
            }

            @keyframes orbit3 {
                0% {
                    transform: rotate(144deg) translateX(90px) rotate(-144deg);
                }

                100% {
                    transform: rotate(504deg) translateX(90px) rotate(-504deg);
                }
            }

            @keyframes orbit4 {
                0% {
                    transform: rotate(216deg) translateX(90px) rotate(-216deg);
                }

                100% {
                    transform: rotate(576deg) translateX(90px) rotate(-576deg);
                }
            }

            @keyframes orbit5 {
                0% {
                    transform: rotate(288deg) translateX(90px) rotate(-288deg);
                }

                100% {
                    transform: rotate(648deg) translateX(90px) rotate(-648deg);
                }
            }
        }

        @media(max-width: 640px) {
            .hero-container {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto;
                gap: 20px;
                padding: 0 15px;
            }

            .hero-main {
                grid-row: 1;
                text-align: center;
            }

            .banner-row {
                grid-row: 2;
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .hero-content {
                padding: 40px 35px;
                max-width: 100%;
            }

            .hero-brand img {
                height: 70px;
            }

            #hero h1 {
                font-size: 2.8rem;
            }

            #hero .tagline {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }

            #hero p {
                font-size: 1.05rem;
                margin-bottom: 30px;
            }

            #hero .hero-buttons {
                gap: 15px;
            }

            #hero .btn-large {
                padding: 14px 28px;
                font-size: 1rem;
            }

            .hero-banners {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .hero-banners {
                height: 180px;
                max-width: 350px;
            }

            .hero-banner {
                width: 160px;
                height: 90px;
                padding: 15px;
            }

            .hero-banner:nth-child(1) {
                transform: rotateY(0deg) translateZ(180px);
            }

            .hero-banner:nth-child(2) {
                transform: rotateY(51deg) translateZ(180px);
            }

            .hero-banner:nth-child(3) {
                transform: rotateY(102deg) translateZ(180px);
            }

            .hero-banner:nth-child(4) {
                transform: rotateY(153deg) translateZ(180px);
            }

            .hero-banner:nth-child(5) {
                transform: rotateY(204deg) translateZ(180px);
            }

            .hero-banner:nth-child(6) {
                transform: rotateY(255deg) translateZ(180px);
            }

            .hero-banner:nth-child(7) {
                transform: rotateY(306deg) translateZ(180px);
            }

            .hero-banner:hover {
                transform: rotateY(var(--rotation)) translateZ(200px) scale(1.05);
            }

            .banner-header {
                gap: 10px;
            }

            .banner-icon {
                font-size: 1.5rem;
            }

            .banner-title {
                font-size: 1.1rem;
            }

            .circular-orbit {
                width: 180px;
                height: 180px;
            }

            .orbit-center {
                width: 50px;
                height: 50px;
                font-size: 0.7rem;
            }

            .orbit-banner {
                width: 50px;
                height: 50px;
            }

            .orbit-banner-icon {
                font-size: 1.2rem;
            }

            .orbit-banner-text {
                font-size: 0.6rem;
            }

            @keyframes orbit1 {
                0% {
                    transform: rotate(0deg) translateX(80px) rotate(0deg);
                }

                100% {
                    transform: rotate(360deg) translateX(80px) rotate(-360deg);
                }
            }

            @keyframes orbit2 {
                0% {
                    transform: rotate(72deg) translateX(80px) rotate(-72deg);
                }

                100% {
                    transform: rotate(432deg) translateX(80px) rotate(-432deg);
                }
            }

            @keyframes orbit3 {
                0% {
                    transform: rotate(144deg) translateX(80px) rotate(-144deg);
                }

                100% {
                    transform: rotate(504deg) translateX(80px) rotate(-504deg);
                }
            }

            @keyframes orbit4 {
                0% {
                    transform: rotate(216deg) translateX(80px) rotate(-216deg);
                }

                100% {
                    transform: rotate(576deg) translateX(80px) rotate(-576deg);
                }
            }

            @keyframes orbit5 {
                0% {
                    transform: rotate(288deg) translateX(80px) rotate(-288deg);
                }

                100% {
                    transform: rotate(648deg) translateX(80px) rotate(-648deg);
                }
            }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: #fff;
            font-size: 0.9rem;
            opacity: 0.9;
            font-weight: 500;
        }

        .scroll-indicator::after {
            content: '';
            display: block;
            width: 2px;
            height: 20px;
            margin: 8px auto 0;
            background: var(--accent-orange);
            animation: bounce 1.8s infinite ease-in-out;
            border-radius: 2px;
            box-shadow: 0 0 10px var(--accent-orange);
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(8px);
            }
        }

        /* Quick Stats Banner */
        .stats-banner {
            background: var(--primary-green);
            color: white;
            padding: 40px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-orange);
            display: block;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Featured Products */
        #featured {
            background-color: white;
        }

        .featured-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            margin-top: 50px;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            box-shadow: var(--card-shadow);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--hover-shadow);
        }

        .product-card .badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-orange);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            z-index: 1;
        }

        .product-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .product-content {
            padding: 25px;
        }

        .product-card h3 {
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .product-card p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }

        .price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-green);
        }

        .btn-add {
            padding: 10px 24px;
            font-size: 0.9rem;
        }

        /* Menu Categories */
        #menu {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .category-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--card-shadow);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--hover-shadow);
        }

        .category-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            display: block;
        }

        .category-card h3 {
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .category-card p {
            color: #666;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .items-count {
            display: inline-block;
            background: var(--bg-light);
            color: var(--accent-orange);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 10px;
        }

        /* How It Works */
        #how-it-works {
            background: white;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .step-card {
            text-align: center;
            padding: 30px 20px;
            position: relative;
        }

        .step-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-orange), #d66d13);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto 25px auto;
            box-shadow: 0 5px 15px rgba(244, 130, 33, 0.3);
        }

        .step-card h3 {
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .step-card p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Why Choose Us */
        #why-choose {
            background: var(--primary-green);
            color: white;
        }

        #why-choose h2,
        #why-choose .section-subtitle {
            color: white;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            margin-top: 50px;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 35px 30px;
            border-radius: 15px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .benefit-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            display: block;
        }

        .benefit-card h3 {
            color: var(--accent-orange);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .benefit-card p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
        }

        /* Testimonials */
        #testimonials {
            background: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: var(--bg-light);
            padding: 35px;
            border-radius: 15px;
            box-shadow: var(--card-shadow);
            position: relative;
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--accent-orange);
            opacity: 0.3;
            position: absolute;
            top: 20px;
            left: 25px;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 25px;
            color: #555;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--accent-orange);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .author-info h4 {
            color: var(--primary-green);
            margin-bottom: 5px;
            font-size: 1rem;
        }

        .author-info p {
            color: #888;
            font-size: 0.85rem;
            margin: 0;
        }

        .stars {
            color: var(--accent-orange);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        /* CTA Section */
        #cta {
            background: linear-gradient(135deg, rgba(41, 82, 64, 0.95), rgba(244, 130, 33, 0.9)), url('/images/cta-background.jpg') no-repeat center center/cover;
            padding: 100px 0;
            text-align: center;
            color: white;
        }

        #cta h2 {
            color: white;
            font-size: 3rem;
            margin-bottom: 20px;
        }

        #cta p {
            color: white;
            max-width: 700px;
            margin: 0 auto 40px auto;
            font-size: 1.2rem;
        }

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

        /* Footer */
        footer {
            background-color: var(--primary-green);
            color: var(--text-light);
            padding: 70px 0 30px 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h4 {
            color: var(--accent-orange);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-logo {
            height: 70px;
            margin-bottom: 25px;
            background-color: rgba(255, 250, 240, 0.95);
            border-radius: 20px;
        }

        .footer-col p,
        .footer-col a {
            color: #ddd;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--accent-orange);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive */
        @media(max-width: 968px) {
            h2 {
                font-size: 2rem;
            }

            .navbar {
                padding: 1rem;
            }

            /* Collapse nav into a panel */
            .menu-toggle {
                display: inline-block;
            }

            .navbar>.btn {
                display: none;
            }

            .navbar nav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #ffffff;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
                border-top: 1px solid rgba(0, 0, 0, 0.06);
                padding: 12px 16px;
                display: none;
            }

            .navbar.open nav {
                display: block;
            }

            .navbar nav ul {
                flex-direction: column;
                gap: 10px;
            }

            .navbar nav ul li a {
                padding: 10px 6px;
                display: block;
            }

            .navbar .nav-cta {
                display: block;
            }

            .navbar .nav-cta .btn {
                width: 100%;
            }

            .navbar nav ul li a {
                font-size: 0.9rem;
            }

            #hero {
                min-height: 90vh;
                padding-top: 100px;
            }

            #hero h1 {
                font-size: 2.8rem;
            }

            #hero .tagline {
                font-size: 1.3rem;
            }

            .hero-brand img {
                height: 100px;
            }

            .hero-content {
                padding: 30px 25px;
            }

            #cta h2 {
                font-size: 2.2rem;
            }
        }

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

            .navbar nav ul {
                flex-direction: column;
                gap: 10px;
            }

            #hero h1 {
                font-size: 2.2rem;
            }

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

            .hero-content {
                padding: 30px 25px;
            }

            .hero-brand img {
                height: 60px;
            }

            #hero h1 {
                font-size: 2.4rem;
                margin-bottom: 10px;
            }

            #hero .tagline {
                font-size: 1.1rem;
                margin-bottom: 12px;
            }

            #hero p {
                font-size: 1rem;
                margin-bottom: 25px;
            }

            #hero .hero-buttons {
                gap: 12px;
                flex-direction: column;
                align-items: center;
            }

            #hero .btn-large {
                padding: 12px 24px;
                font-size: 0.95rem;
                width: 100%;
                max-width: 280px;
            }

            .stat-number {
                font-size: 2.2rem;
            }

            .category-grid,
            .featured-grid,
            .steps-grid,
            .benefits-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            /* Tighter cards on small screens */
            .category-card {
                padding: 24px 20px;
            }

            .category-icon {
                font-size: 3rem;
            }

            .category-card h3 {
                font-size: 1.1rem;
            }

            .category-card p {
                font-size: 0.95rem;
            }
        }