
        .container {
            max-width: 1512px;
            margin: 0 auto;
            padding: 0 16px;
        }

      
          
        /* Main Content */
        .main-content {
            margin-top: 94px;
            padding: 0 6px;
        }

        .hero-section {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 46px;
        }

        .hero-title {
            font-size: 48px;
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            color: #113554;
            margin-bottom: 20px;
        }

        .hero-description {
            font-size: 18px;
            font-family: 'Geist', sans-serif;
            font-weight: 400;
            line-height: 1.4;
            color: #325573;
            width: 100%;
            margin-bottom: 46px;
        }

        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-bottom: 110px;
        }

        .product-card {
            display: flex;
            flex-direction: column;
            background-color: #fff7f5;
            border: 0 solid #e44a1b;
            border-radius: 14px;
            padding: 6px;
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(228, 74, 27, 0.15);
        }

        .product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .product-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding: 0 10px;
        }

        .product-title {
            font-size: 24px;
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            color: #113554;
        }

        .product-btn {
            display: flex;
            align-items: center;
            gap: 4px;
            background-color: #e44a1b;
            color: #fdfeff;
            padding: 14px 18px ;
            border-radius: 22px;
            text-decoration: none;
            font-size: 9px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            line-height: 15px;
            width: fit-content;
            transition: all 0.3s ease;
        }

        .product-btn:hover {
            background-color: #c73e17;
            transform: translateY(-2px);
        }

        .btn-icon {
            width: 16px;
            height: 16px;
        }

        /* CTA Section */
        .cta-section {
            margin: 110px 0 68px 0;
        }

        .cta-container {
            /* background-color: ; */
            background: url('/public/assets/images/img_close_36px.png'),#325573;
            background-size: cover;
            background-position: center;
            border-radius: 30px;
            padding: 30px 20px;
            text-align: center;
        }

        .cta-image {
            width: 100%;
            max-width: 1414px;
            height: 330px;
            object-fit: cover;
            border-radius: 20px;
            margin-bottom: 64px;
        }

        .cta-title {
            font-size: 32px;
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            color: #fdfeff;
            margin-bottom: 32px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #e44a1b;
            color: #fdfeff;
            padding: 18px 24px ;
            border-radius: 32px;
            text-decoration: none;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            line-height: 21px;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background-color: #c73e17;
            transform: translateY(-2px);
        }

        .cta-btn-icon {
            width: 24px;   
            height: 24px;
        }

       @media (max-width: 768px) {
          .footer-links {
                flex-direction: column;
                gap: 40px;
                margin: 0 0 60px;
            }
                 .cta-title {
                padding: 0 20px;
            }
           }
        /* Responsive Design */
        @media (min-width: 640px) {
            .hero-title {
                font-size: 60px;
            }

            .hero-description {
                font-size: 20px;
                width: 80%;
            }

            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta-title {
                font-size: 40px;
            }

            .footer-title {
                font-size: 40px;
            }
        }

        @media (min-width: 768px) {
            /* .mobile-menu {
                display: none;
            } */

            .nav-menu {
                display: flex;
            }

            .hero-title {
                font-size: 90px;
                line-height: 117px;
            }

            .hero-description {
                font-size: 24px;
                line-height: 33px;
                width: 70%;
            }

            .product-card {
                flex-direction: row;
                align-items: center;
                gap: 24px;
            }

            .product-image {
                width: 26%;
                height: 158px;
                margin-bottom: 0;
            }

            .product-content {
                flex: 1;
                padding: 0;
            }

            .product-title {
                font-size: 30px;
                line-height: 39px;
            }

            .cta-title {
                font-size: 50px;
                line-height: 65px;
            }

            .footer-title {
                font-size: 50px;
                line-height: 65px;
            }

            /* .footer-links {
                flex-direction: column;
                gap: 40px;
                margin: 0 0 60px;
            } */

            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }

            .footer-copyright {
                font-size: 24px;
            }
        }

        @media (min-width: 1024px) {
            .container {
                padding: 0 32px;
            }

            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

           
            .hamburger{
            display: none;
          }
        }

       
    