   :root {
            --primary: #e87717;
            --light: #ECECEC;
            --white: #FFFFFF;
            --gray: #A09D99;
            --dark: #1E0E00;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            -webkit-tap-highlight-color: transparent;

        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
        }

        .logo img {
            height: 75px;
        }

       

        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover {
            color: var(--primary);
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }
        
        .btn-menu {
            width: 30px;
            height: 20px;
            display: none;
        }
        .btn-menu span {
            display: block;
            position: relative;
            width: 30px;
            height: 1px;
            background: #000;
        }
        .btn-menu span:nth-child(2) {
            top: 8px;
        }
        .btn-menu span:nth-child(3) {
            top: 16px;
        }
        .btn-menu.active span:nth-child(2) {
            display: none;
        }
        .btn-menu.active span:nth-child(1) {
            transform: rotate(-45deg);
            top: 9px;
        }
        .btn-menu.active span:nth-child(3) {
            transform: rotate(45deg);
            top: 8px;
        }
        .mobile_menu {
            display: none;
            background: rgba(30, 14, 0, 1);
            position: fixed;
            width: 100%;
            height: calc(100% - 92px);
            top: 92px;
            z-index: 999;
        }
        .mobile_menu.active {
            display: block;
        }
        .mobile_menu ul {
            text-align: center;
            padding: 50px 0 0 0;
        }
        .mobile_menu a {
            color: #fff;
            text-transform: uppercase;
            font-size: 22px;
            display: block;
            margin: 12px 0;
            text-decoration: none;
        }


        .contact-btn {
            background-color: var(--primary);
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            gap: 10px;
            align-items: center;
            text-decoration: none;
        }
        .contact-btn img {
            height: 20px;
            width: auto;
        }

        .contact-btn:hover {
            background-color: #c95805;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(237, 96, 28, 0.3);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(30, 14, 0, 0.7), rgba(30, 14, 0, 0.7)), url('https://images.unsplash.com/photo-1603712610496-5362ac6c2c3c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 70px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
 
        .hero h1 {
            font-size: 36px;
            line-height: 140%;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out;
            font-weight: 300;
            text-transform: uppercase;
        }

        .hero p {
            font-size: 20px;
            max-width: 460px;
            margin: 0 0 30px;
            animation: fadeInUp 1s ease-out 0.2s both;
            font-weight: 300;
        }

        .hero-btn {
            background-color: var(--primary);
            color: var(--white);
            border: none;
            padding: 15px 30px;
            border-radius: 5px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            animation: fadeInUp 1s ease-out 0.4s both;
            text-decoration: none;
            gap: 10px;
            align-items: center;
        }
        .hero-btn img {
            height: 20px;
            width: auto;
        }

        .hero-btn:hover {
            background-color: #c95805;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(237, 96, 28, 0.3);
        }
        .hero-img {
            position: absolute;
            right: 0;
            top: 0;
            width: auto;
            height: 100%;
        }
        .hero-container {
            max-width: 600px;
            text-align: left;
            background: rgba(30, 14, 0, 0.7);
            padding: 40px;
            position: relative;
            z-index: 2;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }
        /* Stats Section */
        .offer-subtitle {
            text-align: center;
            max-width: 800px;
            font-size: 22px;
            line-height: 140%;
            margin: 0 auto 30px auto;
        }
        .stats {
            background-color: var(--white);
            padding: 60px 0;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
            position: relative;
            z-index: 3;
        }

        .stat-item {
            padding: 20px 20px;
            border-radius: 10px;
            background-color: var(--light);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .stat-number {
            font-size: 42px;
            line-height: 100%;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .stat-text {
            font-size: 18px;
            line-height: 120%;
            color: var(--dark);
        }
        
        /* Section Offer */
        .offer {
            padding: 60px 0;
        }
        .offer-text {
            text-align: center;
            font-size: 30px;
            line-height: 130%;
            max-width: 1000px;
            margin: 0 auto;
        }
        .offer-text-btn {
            text-align: center;
            font-weight: 700;
            color: var(--primary);
            width: fit-content;
            margin: 20px auto 0 auto;
            cursor: pointer;
            font-size: 20px;
            border-bottom: 2px solid var(--primary);
        }
        
        /* Tabs */
        .tabs {
            padding: 60px 0;
            background: #fff;
        }
        .tabs-list {
            display: flex;
            gap: 30px;
        }
        .tabs-list > div {
            flex: 0 calc(33.33% - 20px);
            border-radius: 10px;
            background-color: var(--light);
            transition: transform 0.3s, box-shadow 0.3s;     
            height: 190px;
            padding: 20px;
            display: flex;
            align-items: baseline;
            justify-content: end;
            flex-direction: column;
            position: relative;
            cursor: pointer;
        }
        .tabs-list-btn {
            border-radius: 5px;
            background: var(--primary);
            width: 30px;
            height: 30px;
            position: absolute;
            bottom: 20px;
            right: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .tabs-list-btn svg path {
            fill: #fff;
        }
        .tabs-list > div p {
            font-weight: 700;
            font-size: 20px;
        }
        .tabs-img {
            position: absolute;
            top: 20px;
            height: 110px;
            right: 20px;
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background-color: var(--light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 36px;
            color: var(--dark);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--primary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 18px;
            color: var(--dark);
        }

        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.5s;
        }

        .about-image:hover {
            transform: scale(1.03);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Categories Section */
        .categories {
            padding: 80px 0;
            background-color: var(--white);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .category-card {
            background-color: var(--light);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--primary);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .category-card:hover::before {
            transform: scaleX(1);
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .category-icon {
            font-size: 50px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .category-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--dark);
            line-height: 120%;
        }

        .category-card p {
            color: var(--dark);
        }
        .categories-icon {
            height: 150px;
            width: auto;
            margin: 0 auto 20px auto;
            display: block;
            max-width: 100%;
        }
        .categories-icon img {
            height: auto;
            width: auto;
            max-width: 100%;
            max-height: 100%;
        }
        /* Offers Section */
        .offers {
            padding: 80px 0;
            background-color: var(--light);
        }

        .offers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .offer-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .offer-card:hover {
            transform: translateY(-10px);
        }

        .offer-image {
            height: 200px;
            overflow: hidden;
        }

        .offer-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .offer-card:hover .offer-image img {
            transform: scale(1.1);
        }

        .offer-content {
            padding: 20px;
        }

        .offer-content h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .offer-content p {
            color: var(--gray);
            margin-bottom: 15px;
        }

        .offer-price {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .offer-btn {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 8px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }

        .offer-btn:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        /* Why Us Section */
        .why-us {
            padding: 80px 0;
            background-color: var(--white);
        }
        .why-list ul {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        .why-list ul > li {
            flex: 0 calc(25% - 23px);
        }
        .why-list {
            list-style: none;
        }

        .why-list li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .why-list i {
            color: var(--primary);
            font-size: 24px;
            margin-top: 5px;
        }

        .why-list h4 {
            font-size: 20px;
            margin-bottom: 5px;
            color: var(--dark);
            text-align: center;
        }

        .why-list p {
            color: var(--gray);
            text-align: center;
        }
        .why-us-icon {
            margin: 0 auto 15px auto;
            display: block;
        }

        .why-image {
            border-radius: 10px;
            overflow: hidden;
            display: flex;
            justify-content: center;
         
        }

        .why-image img {
            width: 50%;
            height: auto;
          
        }

        /* Brands Section */
        .brands {
            padding: 60px 0;
            background-color: var(--light);
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            align-items: center;
        }

        .brand-item {
            background-color: var(--white);
            padding: 20px;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100px;
            transition: transform 0.3s;
        }

        .brand-item:hover {
            transform: scale(1.05);
        }

        .brand-item img {
            max-width: 100%;
            max-height: 60px;
            filter: grayscale(100%);
            transition: filter 0.3s;
        }

        .brand-item:hover img {
            filter: grayscale(0%);
        }

        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: linear-gradient(rgba(8, 168, 38, 0.9), rgba(8, 168, 38, 0.9)), url('https://images.unsplash.com/photo-1603712610496-5362ac6c2c3c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
        }

        .cta h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .cta-btn {
            background-color: var(--white);
            color: var(--primary);
            border: none;
            padding: 15px 30px;
            border-radius: 5px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .cta-btn:hover {
            background-color: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255,255,255,0.2);
        }
        
        .why {
            background: #fff;
            padding: 60px 0;
        }
        .why-list {
            gap: 30px;
            display: flex;
            flex-wrap: wrap;
        }
        .why-list > div {
            flex: 0 calc(33.33% - 20px);
            background-color: var(--light);
            padding: 25px;
            border-radius: 10px;
        }
        .why-title {
            font-weight: 700;
            color: var(--primary);
            font-size: 20px;
            line-height: 115%;
            position: relative;
            margin: 0 0 30px 0;
        }
        .why-title::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--dark);
            bottom: -20px;
            left: 0;
        }
        .why-text {
            line-height: 135%;
        }
        .why-icon {
            border-radius: 5px;
            width: 60px;
            height: 60px;
            margin: 0 0 15px 0;
            display: flex;
            padding: 8px;
            background: #fff;
        }
        .why-icon img {
            width: 100%;
            height: auto;
        }
        .benefits {
            padding: 60px 0;            
        }
        .benefits-list {
            gap: 50px 30px;
            display: flex;
            flex-wrap: wrap;
        }
        .benefits-list  > div {
            flex: 0 calc(50% - 20px);
            padding: 25px;
            border-radius: 10px;
        }
        .benefits-title {
            font-weight: 700;
            color: var(--primary);
            font-size: 20px;
            line-height: 115%;
            margin: 0 0 20px 0;            
        }
        .benefits-text {
            line-height: 135%;
        }
        .benefits-list > div:nth-child(1) {
            background-color: #fff;
        }
        .benefits-list > div:nth-child(2) {
            background-color: var(--primary);
        }
        .benefits-list > div:nth-child(3) {
            background-color: rgba(255,255,255,0.5);
        }
        .benefits-list > div:nth-child(4) {
            background-color: rgba(255,255,255,0.25);
        }
        .benefits-list > div:nth-child(2) .benefits-title,
        .benefits-list > div:nth-child(2) .benefits-text {
            color: #fff;
        }
        .benefits-icon {
            height: 50px;
            width: auto;
            margin: 0 0 20px 0;
        }
        .benefits .hero-btn {
            margin: 30px auto 0 auto;
            display: flex;
            width: fit-content;
        }
        .feedback-inner {
            border-radius: 10px;
            padding: 30px;
            background: rgba(30, 14, 0, 1);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        .feedback-inner p {
            font-weight: 400;
            font-size: 16px;
            margin: 6px 0 0 0;
        }
        .feedback {
            background: #fff;
            padding: 60px 0;
        }
        .feedback-inner > div {
            font-weight: 700;
            font-size: 24px;
            color: #fff;
        }
        .feedback-inner > div:nth-child(1) {
            flex: 0 40%;
            font-size: 30px;
        }
        .feedback-inner > div:nth-child(2) {
            flex: 0 60%;
        }
        .feedback-inner > div a {
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: end;
            gap: 10px;
        }
        .feedback-inner > div:nth-child(2) {
            text-align: right;
        }
        .feedback-inner > div a img {
            height: 30px;
            width: auto;
        }
        .feedback-banner {
            margin: 30px 0 0 0;
            border-radius: 10px;
            padding: 30px;
            background-color: var(--primary);
            position: relative;
        }
        .feedback-banner-img {
            position: absolute;
            right: 30px;
            height: 120%;
            top: -10%;
        }
        .feedback-banner p {
            max-width: 800px;
            font-size: 30px;
            font-weight: 600;
            color: #fff;
            line-height: 130%;
        }
        .feedback-banner p strong {
            width: fit-content;
            border-radius: 5px;
            display: block;
            padding: 5px 10px;
            color: var(--primary);
            background: #fff;
            margin: 7px 0 0 0;
        }
        .offer-popup {
            backdrop-filter: blur(20px);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 99999;
            display: none;
        }
        .offer-popup.active {
            display: block;
        }
        .offer-popup-container {
            background: #fff;
            overflow: auto;
            border-radius: 20px;
            padding: 50px;
            width: 1000px;
            height: 90vh;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .offer-popup-inner {
            display: grid;
            grid-template-columns: 395px calc(100% - 395px);
        }
        .swiper-popup {
            position: relative;
            overflow: hidden;
        }
        .swiper-popup .swiper-slide {
            height: 340px;
            overflow: hidden;
            border-radius: 10px;
        }
        .swiper-button-next,
        .swiper-button-prev {
            width: 40px !important;
            height: 40px !important;
            display: flex;
            align-items: center;
            justify-content: center;     
            background-color: var(--primary);
            border-radius: 80px;
        }
        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px !important;
            color: #fff !important;
        }
        .swiper-popup .swiper-slide img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
        .offer-popup-inner > div:nth-child(2) {
            padding: 0 0 0 50px;
        }
        .offer-popup-step {
            display: flex;
            gap: 20px;
            margin: 0 0 20px 0;
        }
        .offer-popup-step-num {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #fff;
            font-size: 18px;
            background-color: var(--primary);
            border-radius: 80px;
        }
        .offer-popup-list {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;     
            margin: 0 0 40px 0;
        }
        .offer-popup-list > div {
            flex: 0 calc(25% - 23px);
        }
        .offer-popup-list-title {
            font-weight: 700;
            font-size: 20px;
            line-height: 120%;
            margin: 0 0 15px 0;
            text-align: center;
        }
        .offer-popup-list p {
            text-align: center;
            line-height: 120%;
        }
        .offer-popup-download {
            margin: 20px auto;
            text-align: center;
            color: #08a826;
            font-weight: 700;
            max-width: 500px;
            font-size: 22px;
            line-height: 120%;
        }
        .offer-popup .hero-btn {
            margin: 0 auto;
            display: flex;
            width: fit-content;
        }
        .offer-popup-list-img {
            height: 90px;
            width: auto;
            margin: 0 auto 20px auto;
            display: block;
        }
        .contacts {
            padding: 60px 0;
        }
        .feedback-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        .feedback-inner > div:nth-child(1) {
            flex: 0 400px;
            padding: 0 30px;
        }
        .feedback-inner > div:nth-child(2) {
            flex: 0 calc(100% - 430px);
        }
        .feedback-inner iframe {
            border-radius: 10px;
        }
        .feedback-inner ul {
            list-style: none;
            padding: 20px 0 0 0;
        }
        .feedback-inner ul li {
            font-size: 20px;
            line-height: 130%;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 12px 0;
        }
        .feedback-inner ul li span {
            flex: 0 30px;
            display: flex;
            align-items: start;
            justify-content: center;
            flex-wrap: wrap;
            flex-direction: column;
        }
        .feedback-inner ul li span img {
            position: relative;
            top: 2px;
        }
        .social-links a img {
            max-width: 18px;
            height: auto;
        }
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 22px;
            margin-bottom: 20px;
            color: var(--white);
            position: relative;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--primary);
            bottom: -8px;
            left: 0;
        }

        .footer-column p {
            margin-bottom: 15px;
            color: var(--gray);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--light);
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--gray);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-content, .why-content {
                grid-template-columns: 1fr;
            }
            
            .about-image, .why-image {
                order: -1;
            }
            
            nav ul {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 30px;
            }
            
            .cta h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 576px) {

   .header-content {
      
            padding: 6px 0;
        }

        .logo img {
            width: 100px;
            height: auto;
        }
            
            .hero {
                padding: 70px 0;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .stat-number {
                font-size: 36px;
            }
        }