        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-image: url('./public/bg.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            min-height: 100vh;
            font-family: 'Inter', sans-serif;
        }
        
        /* Premium Navbar Styles */
        .navbar {
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: transparent;
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .nav-logo img {
            height: 100px;
            width: 100px;
            transition: all 0.3s ease;
        }

        .nav-logo:hover img {
            transform: scale(1.05);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 3rem;
            list-style: none;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: #374151;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            letter-spacing: 0.025em;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #CD1C18, #CD1C18);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: #CD1C18;
        }

        .nav-cta {
            background: linear-gradient(135deg, #CD1C18 , #9B2335);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.025em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: #CD1C18;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 2rem;
                gap: 2rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                border-bottom: 1px solid rgba(255, 255, 255, 0.2);
                max-height: calc(100vh - 60px);
                overflow-y: auto;
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .nav-container {
                padding: 0 1.5rem;
            }

            .nav-link {
                font-size: 1.2rem;
                padding: 1rem 0;
                display: block;
                text-align: center;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }

            .nav-link:last-child {
                border-bottom: none;
            }

            .nav-cta {
                margin-top: 1rem;
                text-align: center;
                display: block;
                padding: 1rem 2rem;
                font-size: 1.1rem;
            }
        }

        /* Enhanced Touch Targets for Mobile */
        @media (max-width: 768px) {
            .hero-cta,
            .about-cta,
            .skincare-cta,
            .add-to-cart,
            .submit-btn {
                min-height: 44px;
                min-width: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .nav-link {
                min-height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .mobile-menu-btn {
                min-height: 44px;
                min-width: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        /* Improved Mobile Grid Layouts */
        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .features-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .vision-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .offer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .footer-links {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        /* Better Mobile Typography */
        @media (max-width: 480px) {
            .hero-brand {
                font-size: 1.2rem;
                line-height: 1.1;
            }
            
            .hero-main {
                font-size: 1rem;
                line-height: 1.2;
            }
            
            .hero-tagline {
                font-size: 0.9rem;
                line-height: 1.4;
            }

            .about-teaser-text h2 {
                font-size: 1.6rem;
                line-height: 1.3;
            }

            .skincare-left h2 {
                font-size: 2rem;
                line-height: 1.2;
            }

            .vision-left h2 {
                font-size: 2.2rem;
                line-height: 1.2;
            }

            .offer-header h2 {
                font-size: 2.2rem;
                line-height: 1.2;
            }

            .infrastructure-header h2 {
                font-size: 2.2rem;
                line-height: 1.2;
            }

            .contact-header h2 {
                font-size: 2.2rem;
                line-height: 1.2;
            }
        }

        /* Mobile Form Improvements */
        @media (max-width: 768px) {
            .contact-form {
                gap: 1rem;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                font-size: 16px; /* Prevents zoom on iOS */
                padding: 0.875rem;
            }

            .submit-btn {
                width: 100%;
                margin-top: 1.5rem;
            }
        }

        /* Mobile Image Optimizations */
        @media (max-width: 768px) {
            .left-branch,
            .right-branch {
                display: none; /* Hide decorative images on mobile for better performance */
            }

            .vision-image-container {
                margin: 0 auto;
            }

            .infrastructure-image-container {
                margin: 0 auto;
            }
        }

        /* Tablet Landscape Optimization */
        @media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
            .hero-banner {
                height: 70vh;
            }

            .about-teaser {
                padding: 2rem 0;
            }

            .skincare-section {
                padding: 5rem 0;
            }

            .bestsellers-section {
                padding: 5rem 0;
            }

            .features-section {
                padding: 5rem 0;
            }

            .vision-section {
                padding: 5rem 0;
            }

            .offer-section {
                padding: 2rem 0;
            }

            .infrastructure-section {
                padding: 7rem 0;
            }

            .contact-section {
                padding: 7rem 0;
            }
        }

        /* Large Mobile Devices (Phablets) */
        @media (min-width: 481px) and (max-width: 768px) {
            .hero-brand {
                font-size: 2.8rem;
            }
            
            .hero-main {
                font-size: 1rem;
            }
            
            .hero-tagline {
                font-size: 1.05rem;
            }

            .about-teaser-text h2 {
                font-size: 1.9rem;
            }

            .skincare-left h2 {
                font-size: 2.3rem;
            }

            .vision-left h2 {
                font-size: 2.6rem;
            }

            .offer-header h2 {
                font-size: 2.6rem;
            }

            .infrastructure-header h2 {
                font-size: 2.6rem;
            }

            .contact-header h2 {
                font-size: 2.6rem;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .features-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .vision-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .offer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        /* Accessibility Improvements for Mobile */
        @media (max-width: 768px) {
            .nav-link:focus,
            .hero-cta:focus,
            .about-cta:focus,
            .skincare-cta:focus,
            .add-to-cart:focus,
            .submit-btn:focus {
                outline: 2px solid  #CD1C18;
                outline-offset: 2px;
            }

            .mobile-menu-btn:focus {
                outline: 2px solid  #CD1C18;
                outline-offset: 2px;
                border-radius: 4px;
            }
        }
        
        /* Hero Banner Styles */
        .hero-banner {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 10;
        }

        .hero-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero-brand {
           font-family: cursive;
            font-size: 1.5rem;
            font-weight: 500;
            font-style: normal;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
            line-height: 1.1;
            color: white;
        }

        /* Fallback for Alex Brush font */
        .hero-brand {
            font-weight: 100;
            font-style: normal;
        }

     

        .hero-main {
            font-family: 'Forum', serif;
            font-size: 1rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
            line-height: 1;
            color: white;
            letter-spacing: 0.05em;
        }

        .hero-tagline {
            font-family: 'Forum', serif;
            font-size: 1.3rem;
            font-weight: 400;
            margin-bottom: 2.5rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
            color: white;
            opacity: 0.95;
        }

        .hero-cta {
            background: white;
            color: #374151;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            font-family: 'Inter', sans-serif;
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(34, 197, 94, 0.6);
        }

        /* Intro Block Styles */
        .intro-block {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 4rem 0;
            position: relative;
            z-index: 5;
        }

        .intro-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 0 2rem;
        }

        .intro-content p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #374151;
            font-weight: 400;
        }

        /* About Us Teaser Section Styles */
        .about-teaser {
            background: #fafaf8;
            padding: 2rem 0;
            position: relative;
            z-index: 5;
            overflow: hidden;
        }

        .about-teaser-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 1rem;
            position: relative;
            z-index: 10;
        }

        .about-teaser-text {
            text-align: center;
        }

        .leaf-icon {
            font-size: 2rem;
            color: #6b7280;
            margin-bottom: 1rem;
        }

        .nature-tag {
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            font-weight: 500;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 2rem;
        }

        .about-teaser-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 500;
            color: #6b7280;
            margin-bottom: 3rem;
            line-height: 1.3;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-cta {
            background: transparent;
            color: #6b7280;
            border: 1px solid #6b7280;
            padding: 0.875rem 2rem;
            font-size: 0.875rem;
            font-weight: 500;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .about-cta:hover {
            background: #6b7280;
            color: white;
        }

        .left-branch, .right-branch {
            position: absolute;
            bottom: 0;
            width: 200px;
            height: 300px;
            background: linear-gradient(45deg, #9ca3af, #6b7280);
            opacity: 0.3;
            border-radius: 50% 50% 0 0;
        }

        .left-branch {
            left: -50px;
            transform: rotate(-15deg);
            background: transparent;
            opacity: 1;
        }

        .right-branch {
            background: transparent;
            opacity: 1;
        }

        .about-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50% 50% 0 0;
        }

        /* Larger screens - bigger images */
        @media (min-width: 1200px) {
            .left-branch, .right-branch {
                width: 280px;
                height: 420px;
            }
        }

        @media (min-width: 1400px) {
            .left-branch, .right-branch {
                width: 320px;
                height: 480px;
            }
        }

        /* Animation for images sliding in */
        .left-branch {
            transform: translateX(-100px) rotate(-15deg);
            opacity: 0;
            transition: all 1.2s ease-out;
        }

        .right-branch {
            transform: translateX(100px) rotate(15deg);
            opacity: 0;
            transition: all 1.2s ease-out;
        }

        .left-branch.animate {
            transform: translateX(0) rotate(-15deg);
            opacity: 1;
        }

        .right-branch.animate {
            transform: translateX(0) rotate(15deg);
            opacity: 1;
        }

        .right-branch {
            right: -50px;
            transform: translateX(100px) rotate(15deg);
            opacity: 0;
            transition: all 1.2s ease-out;
        }

        /* New Skincare Section Styles */
        .skincare-section {
            background: #fafaf8;
            padding: 6rem 0;
            position: relative;
            z-index: 5;
        }

        .skincare-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .skincare-left {
            padding-right: 2rem;
        }

        .skincare-tag {
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 500;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
        }

        .skincare-left h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 500;
            color: #CD1C18;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .skincare-description {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            line-height: 1.7;
            color: #374151;
            margin-bottom: 2rem;
        }

        .price-image-container {
            display: flex;
            align-items: flex-start;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .price-tag {
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 500;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 0.5rem;
        }

        .soap-stack-image {
            position: relative;
            width: 120px;
            height: 100px;
        }

        .soap-bars {
            position: relative;
            z-index: 2;
        }

        .soap-bar {
            width: 80px;
            height: 20px;
            border-radius: 4px;
            margin-bottom: 8px;
        }

        .soap-1 {
            background: #9ca3af;
            margin-left: 20px;
        }

        .soap-2 {
            background: #6b7280;
            margin-left: 10px;
        }

        .soap-3 {
            background: #9ca3af;
        }

        .leaf-branch {
            position: absolute;
            top: -10px;
            right: -15px;
            width: 40px;
            height: 60px;
            background: linear-gradient(45deg, #9ca3af, #6b7280);
            border-radius: 50% 50% 0 0;
            transform: rotate(45deg);
            z-index: 1;
        }

        .skincare-cta {
            background: transparent;
            color: #CD1C18;
            border: 1px solid #CD1C18;
            padding: 0.875rem 2rem;
            font-size: 0.875rem;
            font-weight: 500;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .skincare-cta:hover {
            background: #CD1C18;
            color: white;
        }

        .skincare-right {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hand-soap-image {
            position: relative;
            width: 400px;
            height: 500px;
            background: linear-gradient(135deg, #d1fae5, #a7f3d0);
            border-radius: 20px;
            overflow: hidden;
        }

        .soap-in-hand {
            position: absolute;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 80px;
            background: #f3f4f6;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .water-drops {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            border-radius: 50%;
        }

        /* Shop Our Bestsellers Section Styles */
        .bestsellers-section {
            background: #fafaf8;
            padding: 6rem 0;
            position: relative;
            z-index: 5;
        }

        .bestsellers-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .bestsellers-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .leaf-branch-header {
            font-size: 2rem;
            color: #6b7280;
            margin-bottom: 1.5rem;
        }

        .bestsellers-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 500;
            color: #CD1C18;
            margin-bottom: 1rem;
        }

        .bestsellers-header p {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2rem;
        }

        .product-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .product-image {
            position: relative;
            height: 200px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .light-wood-diffuser {
            width: 80px;
            height: 120px;
            background: linear-gradient(45deg, #d4a574, #b08968);
            border-radius: 50% 50% 0 0;
            position: relative;
        }

        .light-wood-diffuser::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: #3b82f6;
            border-radius: 2px;
        }

        .dark-wood-diffuser {
            width: 80px;
            height: 120px;
            background: linear-gradient(45deg, #8b4513, #654321);
            border-radius: 50% 50% 0 0;
            position: relative;
        }

        .dark-wood-diffuser::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: #3b82f6;
            border-radius: 2px;
        }

        .amber-hand-soap {
            width: 60px;
            height: 100px;
            background: linear-gradient(45deg, #d97706, #b45309);
            border-radius: 8px;
            position: relative;
        }

        .hover-icons {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }

        .icon {
            font-size: 0.8rem;
            color: #9ca3af;
        }

        .black-bottles {
            width: 60px;
            height: 80px;
            background: linear-gradient(45deg, #1f2937, #374151);
            border-radius: 8px;
            position: relative;
        }

        .black-bottles::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 60px;
            background: linear-gradient(45deg, #1f2937, #374151);
            border-radius: 8px;
        }

        .amber-bottle {
            width: 60px;
            height: 100px;
            background: linear-gradient(45deg, #d97706, #b45309);
            border-radius: 8px;
            position: relative;
        }

        .sale-tag {
            position: absolute;
            top: -10px;
            left: -10px;
            background: #dc2626;
            color: white;
            padding: 4px 8px;
            font-size: 0.7rem;
            font-weight: 600;
            border-radius: 4px;
            font-family: 'Inter', sans-serif;
        }

        .product-info h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: #CD1C18;
            margin-bottom: 0.5rem;
        }

        .category {
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            color: #CD1C18;
            margin-bottom: 0.5rem;
        }

        .price {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: #dc2626;
            margin-bottom: 1rem;
        }

        .price-container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .original-price {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: #9ca3af;
            text-decoration: line-through;
        }

        .add-to-cart {
            width: 100%;
            background: transparent;
            color: #CD1C18;
            border: 1px solid #CD1C18;
            padding: 0.75rem 1rem;
            font-size: 0.875rem;
            font-weight: 500;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .add-to-cart:hover {
            background: #CD1C18;
            color: white;
        }

        .add-to-cart.featured {
            background: #CD1C18;
            color: white;
        }

        .add-to-cart.featured:hover {
            background: transparent;
            color: #CD1C18;
        }

        /* Enhanced Animations for What We Offer Section */
        .offer-section {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease-out;
        }

        .offer-section.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .offer-header {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .offer-section.animate .offer-header {
            opacity: 1;
            transform: translateY(0);
        }

        .offer-grid {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease-out 0.3s;
        }

        .offer-section.animate .offer-grid {
            opacity: 1;
            transform: translateY(0);
        }

        .offer-card {
            opacity: 0;
            transform: translateY(30px) scale(0.9);
            transition: all 0.6s ease-out;
        }

        .offer-section.animate .offer-card:nth-child(1) {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition-delay: 0.6s;
        }

        .offer-section.animate .offer-card:nth-child(2) {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition-delay: 0.8s;
        }

        .offer-section.animate .offer-card:nth-child(3) {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition-delay: 1s;
        }

        .offer-section.animate .offer-card:nth-child(4) {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition-delay: 1.2s;
        }

        .offer-number {
            opacity: 0;
            transform: scale(0.5) rotate(-10deg);
            transition: all 0.8s ease-out;
        }

        .offer-section.animate .offer-card:nth-child(1) .offer-number {
            opacity: 1;
            transform: scale(1) rotate(0deg);
            transition-delay: 0.8s;
        }

        .offer-section.animate .offer-card:nth-child(2) .offer-number {
            opacity: 1;
            transform: scale(1) rotate(0deg);
            transition-delay: 1s;
        }

        .offer-section.animate .offer-card:nth-child(3) .offer-number {
            opacity: 1;
            transform: scale(1) rotate(0deg);
            transition-delay: 1.2s;
        }

        .offer-section.animate .offer-card:nth-child(4) .offer-number {
            opacity: 1;
            transform: scale(1) rotate(0deg);
            transition-delay: 1.4s;
        }

        .offer-accent {
            opacity: 0;
            transform: scaleX(0);
            transition: all 0.6s ease-out;
        }

        .offer-section.animate .offer-card:nth-child(1) .offer-accent {
            opacity: 1;
            transform: scaleX(1);
            transition-delay: 1s;
        }

        .offer-section.animate .offer-card:nth-child(2) .offer-accent {
            opacity: 1;
            transform: scaleX(1);
            transition-delay: 1.2s;
        }

        .offer-section.animate .offer-card:nth-child(3) .offer-accent {
            opacity: 1;
            transform: scaleX(1);
            transition-delay: 1.4s;
        }

        .offer-section.animate .offer-card:nth-child(4) .offer-accent {
            opacity: 1;
            transform: scaleX(1);
            transition-delay: 1.6s;
        }

        /* Features Section Styles */
        .features-section {
            background: #fafaf8;
            padding: 6rem 0;
            position: relative;
            z-index: 5;
        }

        .features-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .feature-block {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .feature-icon {
            margin-bottom: 1.5rem;
        }

        .icon-circle {
            width: 80px;
            height: 80px;
            background: #CD1C18;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        .fast-delivery-icon {
            width: 40px;
            height: 30px;
            border: 2px solid white;
            border-radius: 4px;
            position: relative;
        }

        .fast-delivery-icon::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 2px;
            background: white;
            border-radius: 1px;
        }

        .fast-delivery-icon::after {
            content: '';
            position: absolute;
            left: -25px;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 2px;
            background: white;
            border-radius: 1px;
        }

        .order-tracking-icon {
            width: 40px;
            height: 25px;
            border: 2px solid white;
            border-radius: 4px;
            position: relative;
        }

        .order-tracking-icon::before {
            content: '';
            position: absolute;
            top: -8px;
            right: -5px;
            width: 8px;
            height: 12px;
            background: white;
            border-radius: 50% 50% 0 0;
        }

        .secure-payment-icon {
            width: 50px;
            height: 30px;
            border: 2px solid white;
            border-radius: 4px;
            position: relative;
        }

        .secure-payment-icon::before {
            content: '';
            position: absolute;
            top: -8px;
            right: -5px;
            width: 12px;
            height: 15px;
            background: white;
            border-radius: 50% 50% 0 0;
        }

        .return-icon {
            width: 40px;
            height: 30px;
            border: 2px solid white;
            border-radius: 4px;
            position: relative;
        }

        .return-icon::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid white;
            border-top: 4px solid transparent;
            border-bottom: 4px solid transparent;
        }

        .return-icon::after {
            content: '';
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            border: 2px solid white;
            border-radius: 50%;
            border-left: none;
            border-top: none;
        }

        .feature-block h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 500;
            color: #374151;
            margin-bottom: 1rem;
        }

        .feature-block p {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #6b7280;
            max-width: 250px;
        }

        /* Our Vision Section Styles */
        .vision-section {
            background: white;
            padding: 8rem 0;
            position: relative;
            z-index: 5;
        }

        .vision-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .vision-left {
            padding-right: 2rem;
        }

        .vision-left h2 {
            font-family: 'Forum', serif;
            font-size: 3.5rem;
            font-weight: 400;
            color: #CD1C18;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .vision-left p {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #374151;
            margin-bottom: 3rem;
        }

        .vision-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: #f8fafc;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
        }

        .stat-number {
            display: block;
            font-family: 'Forum', serif;
            font-size: 2.5rem;
            font-weight: 400;
            color: #CD1C18;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 500;
        }

        .vision-right {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .vision-image-container {
            width: 400px;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .vision-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .vision-image:hover {
            transform: scale(1.05);
        }

        /* Enhanced Animations for Vision Section */
        .vision-section {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease-out;
        }

        .vision-section.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .vision-header {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .vision-section.animate .vision-header {
            opacity: 1;
            transform: translateY(0);
        }

        .vision-stats {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease-out 0.3s;
        }

        .vision-section.animate .vision-stats {
            opacity: 1;
            transform: translateY(0);
        }

        .vision-image-container {
            opacity: 0;
            transform: translateX(50px) rotate(5deg);
            transition: all 1s ease-out 0.5s;
        }

        .vision-section.animate .vision-image-container {
            opacity: 1;
            transform: translateX(0) rotate(0deg);
        }

        .stat-item {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.6s ease-out;
        }

        .vision-section.animate .stat-item:nth-child(1) {
            opacity: 1;
            transform: scale(1);
            transition-delay: 0.8s;
        }

        .vision-section.animate .stat-item:nth-child(2) {
            opacity: 1;
            transform: scale(1);
            transition-delay: 1s;
        }

        .vision-section.animate .stat-item:nth-child(3) {
            opacity: 1;
            transform: scale(1);
            transition-delay: 1.2s;
        }

        /* What We Offer Section Styles */
        .offer-section {
            background: #fafaf8;
            padding: 2rem 0;
            position: relative;
            z-index: 5;
        }

        .offer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .offer-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .offer-header h2 {
            font-family: 'Forum', serif;
            font-size: 3.5rem;
            font-weight: 400;
            color: #CD1C18;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .offer-header p {
            font-family: 'Inter', sans-serif;
            font-size: 1.2rem;
            line-height: 1.8;
            color: #6b7280;
            max-width: 800px;
            margin: 0 auto;
            font-style: italic;
        }

        .offer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
        }

        .offer-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 16px;
            text-align: left;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #f1f5f9;
            position: relative;
        }

        .offer-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border-color: #CD1C18;
        }

        .offer-number {
            font-family: 'Forum', serif;
            font-size: 3rem;
            font-weight: 300;
            color: #CD1C18;
            opacity: 0.15;
            position: absolute;
            top: 2rem;
            right: 2rem;
            line-height: 1;
        }

        .offer-accent {
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg,  #CD1C18, #CD1C18);
            margin-bottom: 2rem;
            border-radius: 2px;
        }

        .offer-card h3 {
            font-family: 'Forum', serif;
            font-size: 1.5rem;
            font-weight: 400;
            color: #CD1C18;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .offer-card p {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #6b7280;
        }

        /* Infrastructure Section Styles */
        .infrastructure-section {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 10rem 0;
            position: relative;
            z-index: 5;
        }

        .infrastructure-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .infrastructure-header {
            text-align: center;
            margin-bottom: 6rem;
            position: relative;
        }

        .header-accent {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #CD1C18, #CD1C18);
            margin: 0 auto 2rem;
            border-radius: 2px;
        }

        .infrastructure-header h2 {
            font-family: 'Forum', serif;
            font-size: 4rem;
            font-weight: 300;
            color: #CD1C18;
            margin-bottom: 2rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .infrastructure-header p {
            font-family: 'Inter', sans-serif;
            font-size: 1.3rem;
            line-height: 1.7;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
        }

        .infrastructure-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: start;
        }

        .infrastructure-image-container {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .infrastructure-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(22, 101, 52, 0.9));
            padding: 3rem 2rem 2rem;
            color: white;
        }

        .overlay-content h3 {
            font-family: 'Forum', serif;
            font-size: 2rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .overlay-content p {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            opacity: 0.9;
            line-height: 1.5;
        }

        .infrastructure-features {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 2rem;
            padding: 2rem;
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(226, 232, 240, 0.8);
        }

        .feature-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border-color: #CD1C18;
        }

        .feature-number {
            font-family: 'Forum', serif;
            font-size: 2.5rem;
            font-weight: 300;
            color: #CD1C18;
            opacity: 0.2;
            line-height: 1;
            min-width: 60px;
        }

        .feature-content h4 {
            font-family: 'Forum', serif;
            font-size: 1.4rem;
            font-weight: 400;
            color: #CD1C18;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .feature-content p {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #64748b;
            margin: 0;
        }

        /* Contact Us Section Styles */
        .contact-section {
            background: white;
            padding: 2rem 0;
            position: relative;
            z-index: 5;
        }

        .contact-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 6rem;
            position: relative;
        }

        .contact-header .header-accent {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #CD1C18, #CD1C18);
            margin: 0 auto 2rem;
            border-radius: 2px;
        }

        .contact-header h2 {
            font-family: 'Forum', serif;
            font-size: 4rem;
            font-weight: 300;
            color: #CD1C18;
            margin-bottom: 2rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .contact-header p {
            font-family: 'Inter', sans-serif;
            font-size: 1.3rem;
            line-height: 1.7;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
        }

        .contact-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: start;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;

        }

        .contact-card {
            background: #f8fafc;
            padding: 1rem;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: #CD1C18;
            background: white;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #CD1C18, #CD1C18);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 25px rgba(22, 101, 52, 0.2);
        }

        .icon-location {
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            position: relative;
        }

        .icon-location::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: #CD1C18;
            border-radius: 50%;
        }

        .icon-phone {
            width: 20px;
            height: 20px;
            border: 2px solid white;
            border-radius: 50%;
            position: relative;
        }

        .icon-phone::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 12px;
            height: 12px;
            background: white;
            border-radius: 50%;
        }

        .icon-email {
            width: 24px;
            height: 16px;
            border: 2px solid white;
            border-radius: 4px;
            position: relative;
        }

        .icon-email::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-bottom: 6px solid white;
        }

        .contact-card h3 {
            font-family: 'Forum', serif;
            font-size: 1.5rem;
            font-weight: 400;
            color: #CD1C18;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .contact-card p {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            line-height: 1.6;
            color: #000000;
            margin: 0;
        }

        .contact-form-container {
            background: #f8fafc;
            padding: 3rem;
            border-radius: 24px;
            border: 1px solid #e2e8f0;
        }

        .form-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .form-header h3 {
            font-family: 'Forum', serif;
            font-size: 2rem;
            font-weight: 400;
            color: #CD1C18;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .form-header p {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: #64748b;
            margin: 0;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            color: #374151;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            padding: 1rem;
            border: 1px solid #d1d5db;
            border-radius: 12px;
            background: white;
            transition: all 0.3s ease;
            color: #374151;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #CD1C18;
            box-shadow: 0 0 0 3px rgba(22, 101, 52, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #CD1C18, #CD1C18);
            color: white;
            border: none;
            padding: 1.25rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-top: 1rem;
            box-shadow: 0 8px 25px rgba(22, 101, 52, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(22, 101, 52, 0.4);
        }

       /* Footer Styles */
        .footer {
background: #57041d;            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: #ffffff;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .footer-logo img {
            height: 40px;
            margin-bottom: 1rem;
        }

        .footer-logo p {
            color: #d1d5db;
            line-height: 1.6;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #22c55e;
        }

        .contact-info p {
            color: #d1d5db;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 1.5rem;
        }

        .footer-bottom-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: #9ca3af;
            margin: 0;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }

        .footer-social a:hover {
            color: #22c55e;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-brand {
                font-size: 3rem;
            }
            
            .hero-main {
                font-size: 1.5rem;
            }
            
            .hero-tagline {
                font-size: 1.1rem;
            }
            
            .hero-cta {
                padding: 0.875rem 2rem;
                font-size: 1rem;
            }
            
            .intro-content p {
                font-size: 1.1rem;
            }

            .about-teaser-text h2 {
                font-size: 2rem;
            }

            .nature-tag {
                font-size: 0.8rem;
            }

            .about-cta {
                padding: 0.875rem 2rem;
                font-size: 1rem;
            }

            .skincare-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .skincare-left {
                padding-right: 0;
                text-align: center;
            }

            .skincare-left h2 {
                font-size: 2.5rem;
            }

            .price-image-container {
                justify-content: center;
            }

            .hand-soap-image {
                width: 300px;
                height: 400px;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .bestsellers-header h2 {
                font-size: 2.5rem;
            }

            .features-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .feature-block h3 {
                font-size: 1.3rem;
            }

            .vision-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .vision-left {
                padding-right: 0;
                text-align: center;
            }

            .vision-left h2 {
                font-size: 2.8rem;
            }

            .vision-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .vision-image-container {
                width: 300px;
                height: 400px;
            }

            .offer-header h2 {
                font-size: 2.8rem;
            }

            .offer-header p {
                font-size: 1.1rem;
            }

            .offer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .offer-card {
                padding: 2rem 1.5rem;
            }

            .infrastructure-header h2 {
                font-size: 2.8rem;
            }

            .infrastructure-header p {
                font-size: 1.1rem;
            }

            .infrastructure-header h2 {
                font-size: 3rem;
            }

            .infrastructure-header p {
                font-size: 1.1rem;
            }

            .infrastructure-showcase {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .infrastructure-image-container {
                order: -1;
            }

            .infrastructure-image {
                height: 400px;
            }

            .feature-item {
                padding: 1.5rem;
                gap: 1.5rem;
            }

            .feature-number {
                font-size: 2rem;
                min-width: 50px;
            }

            .contact-header h2 {
                font-size: 3rem;
            }

            .contact-header p {
                font-size: 1.1rem;
            }

            .contact-main {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .contact-form-container {
                padding: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .footer-brand {
                max-width: 100%;
                text-align: center;
            }

            .footer-links {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .footer-certifications {
                justify-content: center;
                flex-wrap: wrap;
            }

            .infrastructure-card {
                padding: 2rem 1.5rem;
            }
        }

        /* Tablet Styles */
        @media (min-width: 769px) and (max-width: 1024px) {
            .hero-brand {
                font-size: 3.5rem;
            }
            
            .hero-main {
                font-size: 1.2rem;
            }
            
            .hero-tagline {
                font-size: 1.2rem;
            }
            
            .nav-container {
                padding: 0 1.5rem;
            }
            
            .nav-menu {
                gap: 2rem;
            }
            
            .about-teaser-text h2 {
                font-size: 2.2rem;
            }
            
            .skincare-content {
                gap: 3rem;
            }
            
            .skincare-left h2 {
                font-size: 2.8rem;
            }
            
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
            
            .features-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }
            
            .vision-content {
                gap: 4rem;
            }
            
            .vision-left h2 {
                font-size: 3.2rem;
            }
            
            .offer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }
            
            .infrastructure-showcase {
                gap: 4rem;
            }
            
            .contact-main {
                gap: 4rem;
            }

            .manufacturing-facility-header h2 {
                font-size: 2.8rem;
            }

            .manufacturing-facility-header p {
                font-size: 1.1rem;
            }

            .facility-address-card {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
                padding: 2.5rem;
            }

            .facility-details {
                text-align: center;
            }

            .facility-details p {
                text-align: center;
            }
        }

        /* Small Mobile Styles */
        @media (max-width: 480px) {
            .hero-brand {
                font-size: 2.5rem;
            }
            
            .hero-main {
                font-size: 1.2rem;
            }
            
            .hero-tagline {
                font-size: 1rem;
            }
            
            .hero-cta {
                padding: 0.75rem 1.5rem;
                font-size: 0.9rem;
            }
            
            .hero-content {
                padding: 0 1rem;
            }
            
            .nav-container {
                padding: 0 1rem;
            }
            
            .about-teaser {
                padding: 4rem 0;
            }
            
            .about-teaser-content {
                padding: 0 1rem;
            }
            
            .about-teaser-text h2 {
                font-size: 1.8rem;
            }
            
            .left-branch, .right-branch {
                width: 150px;
                height: 225px;
            }
            
            .skincare-section {
                padding: 4rem 0;
            }
            
            .skincare-content {
                padding: 0 1rem;
                gap: 2rem;
            }
            
            .skincare-left h2 {
                font-size: 2.2rem;
            }
            
            .hand-soap-image {
                width: 250px;
                height: 350px;
            }
            
            .bestsellers-section {
                padding: 4rem 0;
            }
            
            .bestsellers-content {
                padding: 0 1rem;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .features-section {
                padding: 4rem 0;
            }
            
            .features-content {
                padding: 0 1rem;
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .vision-section {
                padding: 4rem 0;
            }
            
            .vision-content {
                padding: 0 1rem;
                gap: 2rem;
            }
            
            .vision-left h2 {
                font-size: 2.5rem;
            }
            
            .vision-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .vision-image-container {
                width: 250px;
                height: 350px;
            }
            
            .offer-section {
                padding: 4rem 0;
            }
            
            .offer-content {
                padding: 0 1rem;
            }
            
            .offer-header h2 {
                font-size: 2.5rem;
            }
            
            .offer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .offer-card {
                padding: 1.5rem 1rem;
            }
            
            .infrastructure-section {
                padding: 6rem 0;
            }
            
            .infrastructure-content {
                padding: 0 1rem;
            }
            
            .infrastructure-header h2 {
                font-size: 2.5rem;
            }
            
            .infrastructure-showcase {
                gap: 3rem;
            }
            
            .infrastructure-image {
                height: 300px;
            }
            
            .feature-item {
                padding: 1rem;
                gap: 1rem;
            }
            
            .contact-section {
                padding: 6rem 0;
            }
            
            .contact-content {
                padding: 0 1rem;
            }
            
            .contact-header h2 {
                font-size: 2.5rem;
            }
            
            .contact-main {
                gap: 3rem;
            }
            
            .contact-form-container {
                padding: 1.5rem;
            }
            
            .footer-content {
                padding: 0 1rem;
            }
            
            .footer-links {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        /* Large Desktop Styles */
        @media (min-width: 1400px) {
            .nav-container {
                max-width: 1600px;
            }
            
            .hero-content {
                max-width: 1000px;
            }
            
            .hero-brand {
                font-size: 5rem;
            }
            
            .hero-main {
                font-size: 1.5rem;
            }
            
            .hero-tagline {
                font-size: 1.5rem;
            }
            
            .intro-content {
                max-width: 1000px;
            }
            
            .about-teaser-content {
                max-width: 1000px;
            }
            
            .about-teaser-text h2 {
                font-size: 3rem;
            }
            
            .skincare-content {
                max-width: 1400px;
            }
            
            .skincare-left h2 {
                font-size: 3.5rem;
            }
            
            .bestsellers-content {
                max-width: 1600px;
            }
            
            .features-content {
                max-width: 1400px;
            }
            
            .vision-content {
                max-width: 1400px;
            }
            
            .vision-left h2 {
                font-size: 4rem;
            }
            
            .offer-content {
                max-width: 1400px;
            }
            
            .offer-header h2 {
                font-size: 4rem;
            }
            
            .infrastructure-content {
                max-width: 1600px;
            }
            
            .infrastructure-header h2 {
                font-size: 4.5rem;
            }
            
            .contact-content {
                max-width: 1600px;
            }
            
            .contact-header h2 {
                font-size: 4.5rem;
            }
            
            .footer-content {
                max-width: 1600px;
            }
        }

        /* Landscape Mobile Styles */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero-banner {
                height: 80vh;
            }
            
            .hero-brand {
                font-size: 2.8rem;
            }
            
            .hero-main {
                font-size: 1.5rem;
            }
            
            .hero-tagline {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
            
            .about-teaser {
                padding: 4rem 0;
            }
            
            .skincare-section {
                padding: 4rem 0;
            }
            
            .bestsellers-section {
                padding: 4rem 0;
            }
            
            .features-section {
                padding: 4rem 0;
            }
            
            .vision-section {
                padding: 4rem 0;
            }
            
            .offer-section {
                padding: 4rem 0;
            }
            
            .infrastructure-section {
                padding: 6rem 0;
            }
            
            .contact-section {
                padding: 6rem 0;
            }
        }

        /* High DPI Display Support */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .hero-cta,
            .about-cta,
            .skincare-cta,
            .add-to-cart,
            .submit-btn {
                border-width: 0.5px;
            }
        }

        /* Print Styles */
        @media print {
            .navbar,
            .mobile-menu-btn,
            .hero-cta,
            .about-cta,
            .skincare-cta,
            .add-to-cart,
            .submit-btn,
            .footer {
                display: none !important;
            }
            
            .hero-banner {
                height: auto;
                min-height: 300px;
            }
            
            .hero-content {
                color: #000 !important;
                text-shadow: none !important;
            }
            
            .about-teaser,
            
            .bestsellers-section,
            .features-section,
            .vision-section,
            .offer-section,
            .infrastructure-section,
            .contact-section {
                background: white !important;
                padding: 2rem 0 !important;
            }
            
            .left-branch,
            .right-branch {
                display: none !important;
            }
        }

        /* Enhanced Products Section Responsiveness */
        @media (max-width: 768px) {
            .bestsellers-section {
                padding: 4rem 0;
            }

            .bestsellers-header {
                margin-bottom: 3rem;
            }

            .bestsellers-header h2 {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }

            .bestsellers-header p {
                font-size: 1rem;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .product-card {
                padding: 1.25rem;
            }

            .product-image {
                height: 150px;
                margin-bottom: 1rem;
            }

            .product-info h3 {
                font-size: 0.9rem;
            }

            .category {
                font-size: 0.8rem;
            }

            .price {
                font-size: 1rem;
            }

            .add-to-cart {
                padding: 0.75rem 0.5rem;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .product-card {
                padding: 1rem;
            }

            .product-image {
                height: 120px;
            }

            .bestsellers-header h2 {
                font-size: 2rem;
            }
        }

        /* Enhanced Spacing and Layout for Mobile */
        @media (max-width: 768px) {
            .intro-block {
                padding: 3rem 0;
            }

            .intro-content {
                padding: 0 1.5rem;
            }

            .intro-content p {
                font-size: 1.1rem;
                line-height: 1.7;
            }

            .about-teaser {
                padding: 2rem 0;
            }

            .about-teaser-content {
                padding: 0 1rem;
            }

           

            .bestsellers-section {
                padding: 5rem 0;
            }

            .bestsellers-content {
                padding: 0 1.5rem;
            }

            .features-section {
                padding: 5rem 0;
            }

            .features-content {
                padding: 0 1.5rem;
            }

            .vision-section {
                padding: 5rem 0;
            }

            .vision-content {
                padding: 0 1.5rem;
            }

            .offer-section {
                padding: 5rem 0;
            }

            .offer-content {
                padding: 0 1.5rem;
            }

            .infrastructure-section {
                padding: 7rem 0;
            }

            .infrastructure-content {
                padding: 0 1.5rem;
            }

            .contact-section {
                padding: 7rem 0;
            }

            .contact-content {
                padding: 0 1.5rem;
            }

            .footer {
                padding: 3rem 0 1.5rem;
            }

            .footer-content {
                padding: 0 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .intro-block {
                padding: 2rem 0;
            }

            .about-teaser {
                padding: 2rem 0;
            }

            .skincare-section {
                padding: 3rem 0;
            }

            .bestsellers-section {
                padding: 3rem 0;
            }

            .features-section {
                padding: 3rem 0;
            }

            .vision-section {
                padding: 3rem 0;
            }

            .offer-section {
                padding: 3rem 0;
            }

            .infrastructure-section {
                padding: 4rem 0;
            }

            .contact-section {
                padding: 4rem 0;
            }

            .footer {
                padding: 2rem 0 1rem;
            }
        }

        /* Enhanced Mobile Navigation Experience */
        @media (max-width: 768px) {
            .navbar {
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
            }

            .nav-logo img {
                height: 35px;
            }

            .nav-container {
                height: 55px;
            }

            .nav-menu {
                top: 55px;
                max-height: calc(100vh - 55px);
            }

            .mobile-menu-btn span {
                width: 22px;
                height: 2px;
            }
        }

        /* Better Mobile Form Experience */
        @media (max-width: 768px) {
            .contact-form-container {
                margin: 0 1rem;
            }

            .form-header {
                margin-bottom: 2rem;
            }

            .form-header h3 {
                font-size: 1.8rem;
            }

            .form-header p {
                font-size: 0.95rem;
            }

            .form-group label {
                font-size: 0.85rem;
                margin-bottom: 0.75rem;
            }

            .submit-btn {
                font-size: 1rem;
                padding: 1rem 2rem;
            }
        }

        /* Enhanced Mobile Footer */
        @media (max-width: 768px) {
            .footer-main {
                gap: 2rem;
                margin-bottom: 2rem;
                padding-bottom: 2rem;
            }

            .footer-brand {
                text-align: center;
            }

            .footer-logo img {
                height: 40px;
            }

            .footer-tagline {
                font-size: 1.3rem;
            }

            .footer-description {
                font-size: 0.95rem;
            }

            .footer-address {
                font-size: 0.9rem;
            }

            .footer-links {
                gap: 1.5rem;
            }

            .footer-column h4 {
                font-size: 1.1rem;
                margin-bottom: 1rem;
            }

            .footer-column a {
                font-size: 0.9rem;
            }

            .footer-bottom {
                padding-top: 1.5rem;
            }

            .footer-bottom-content {
                gap: 1rem;
            }

            .footer-legal p {
                font-size: 0.85rem;
            }

            .legal-links a {
                font-size: 0.85rem;
            }

            .certification-badge {
                padding: 0.4rem 0.8rem;
            }

            .certification-badge span {
                font-size: 0.75rem;
            }
        }

        /* Enhanced Mobile Hero Section */
        @media (max-width: 768px) {
            .hero-banner {
                height: 90vh;
                padding: 0 1rem;
            }

            .hero-content {
                padding: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-banner {
                height: 85vh;
                padding: 0 0.5rem;
            }

            .hero-content {
                padding: 0 0.5rem;
            }
        }

        /* Better Mobile Image Handling */
        @media (max-width: 768px) {
            .vision-image-container {
                width: 280px;
                height: 350px;
            }

            .infrastructure-image {
                height: 350px;
            }

            .hand-soap-image {
                width: 280px;
                height: 350px;
            }
        }

        @media (max-width: 480px) {
            .vision-image-container {
                width: 240px;
                height: 300px;
            }

            .infrastructure-image {
                height: 280px;
            }

            .hand-soap-image {
                width: 240px;
                height: 300px;
            }
        }

        /* Enhanced Mobile Accessibility */
        @media (max-width: 768px) {
            .nav-link:hover::after {
                display: none; /* Remove hover effects on mobile */
            }

            .hero-cta:hover,
            .about-cta:hover,
            .skincare-cta:hover,
            .add-to-cart:hover,
            .submit-btn:hover {
                transform: none; /* Remove hover transforms on mobile */
            }

            .product-card:hover {
                transform: none; /* Remove hover effects on mobile */
            }

            .feature-item:hover {
                transform: none; /* Remove hover effects on mobile */
            }

            .offer-card:hover {
                transform: none; /* Remove hover effects on mobile */
            }

            .contact-card:hover {
                transform: none; /* Remove hover effects on mobile */
            }

            .certification-card:hover {
                transform: none; /* Remove hover effects on mobile */
            }

            .certification-card:hover::before {
                transform: none; /* Remove hover effects on mobile */
            }

            .certification-card:hover .certification-icon {
                transform: none; /* Remove hover effects on mobile */
            }

            .facility-address-card:hover {
                transform: none; /* Remove hover effects on mobile */
            }

            .facility-address-card:hover::before {
                transform: none; /* Remove hover effects on mobile */
            }

            .facility-address-card:hover .facility-icon {
                transform: none; /* Remove hover effects on mobile */
            }
        }

        .offer-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        /* Certifications Section Styles */
        .certifications-section {
            background: #fafaf8;
            padding: 6rem 0;
            position: relative;
            z-index: 5;
        }

        .certifications-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .certifications-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .certifications-header h2 {
            font-family: 'Forum', serif;
            font-size: 3.5rem;
            font-weight: 400;
            color: #FF2F00;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .certifications-header p {
            font-family: 'Inter', sans-serif;
            font-size: 1.2rem;
            line-height: 1.8;
            color: #6b7280;
            max-width: 800px;
            margin: 0 auto;
            font-style: italic;
        }

        .certifications-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .certification-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #f1f5f9;
            position: relative;
            overflow: hidden;
        }

        .certification-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #FF2F00, #FF2F00);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .certification-card:hover::before {
            transform: scaleX(1);
        }

        .certification-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border-color: #FF2F00;
        }

        .certification-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: block;
            transition: transform 0.3s ease;
        }

        .certification-card:hover .certification-icon {
            transform: scale(1.1);
        }

        .certification-card h3 {
            font-family: 'Forum', serif;
            font-size: 1.5rem;
            font-weight: 400;
            color: #FF2F00;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .certification-card p {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #6b7280;
            margin: 0;
        }

        /* Enhanced Animations for Certifications Section */
        .certifications-section {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease-out;
        }

        .certifications-section.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .certifications-header {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .certifications-section.animate .certifications-header {
            opacity: 1;
            transform: translateY(0);
        }

        .certifications-grid {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease-out 0.3s;
        }

        .certifications-section.animate .certifications-grid {
            opacity: 1;
            transform: translateY(0);
        }

        .certification-card {
            opacity: 0;
            transform: translateY(30px) scale(0.9);
            transition: all 0.6s ease-out;
        }

        .certifications-section.animate .certification-card:nth-child(1) {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition-delay: 0.6s;
        }

        .certifications-section.animate .certification-card:nth-child(2) {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition-delay: 0.8s;
        }

        .certifications-section.animate .certification-card:nth-child(3) {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition-delay: 1s;
        }

        .certifications-section.animate .certification-card:nth-child(4) {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition-delay: 1.2s;
        }

        .certifications-section.animate .certification-card:nth-child(5) {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition-delay: 1.4s;
        }

        .certifications-section.animate .certification-card:nth-child(6) {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition-delay: 1.6s;
        }

        /* Responsive Design for Certifications */
        @media (max-width: 768px) {
            .certifications-section {
                padding: 4rem 0;
            }

            .certifications-content {
                padding: 0 1.5rem;
            }

            .certifications-header {
                margin-bottom: 3rem;
            }

            .certifications-header h2 {
                font-size: 2.8rem;
            }

            .certifications-header p {
                font-size: 1.1rem;
            }

            .certifications-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .certification-card {
                padding: 2rem 1.5rem;
            }

            .certification-icon {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }

            .certification-card h3 {
                font-size: 1.3rem;
            }

            .certification-card p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .certifications-section {
                padding: 3rem 0;
            }

            .certifications-content {
                padding: 0 1rem;
            }

            .certifications-header h2 {
                font-size: 2.5rem;
            }

            .certifications-header p {
                font-size: 1rem;
            }

            .certifications-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .certification-card {
                padding: 1.5rem 1rem;
            }

            .certification-icon {
                font-size: 2rem;
            }

            .certification-card h3 {
                font-size: 1.2rem;
            }

            .certification-card p {
                font-size: 0.85rem;
            }
        }

        /* Tablet Styles for Certifications */
        @media (min-width: 769px) and (max-width: 1024px) {
            .certifications-section {
                padding: 5rem 0;
            }

            .certifications-header h2 {
                font-size: 3.2rem;
            }

            .certifications-header p {
                font-size: 1.15rem;
            }

            .certifications-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }

            .certification-card {
                padding: 2.25rem 1.75rem;
            }
        }

        /* Large Desktop Styles for Certifications */
        @media (min-width: 1400px) {
            .certifications-content {
                max-width: 1400px;
            }

            .certifications-header h2 {
                font-size: 4rem;
            }

            .certifications-header p {
                font-size: 1.3rem;
            }

            .certifications-grid {
                gap: 3rem;
            }

            .certification-card {
                padding: 3rem 2.5rem;
            }

            .certification-icon {
                font-size: 3.5rem;
                margin-bottom: 2rem;
            }

            .certification-card h3 {
                font-size: 1.6rem;
            }

            .certification-card p {
                font-size: 1rem;
            }
        }

        /* Manufacturing Facility Section Styles */
        .manufacturing-facility-section {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 8rem 0;
            position: relative;
            z-index: 5;
        }

        .manufacturing-facility-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .manufacturing-facility-header {
            text-align: center;
            margin-bottom: 6rem;
            position: relative;
        }

        .manufacturing-facility-header::before {
            content: '';
            position: absolute;
            top: -2rem;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #FF2F00, #FF2F00);
            border-radius: 2px;
        }

        .manufacturing-facility-header h2 {
            font-family: 'Forum', serif;
            font-size: 3.5rem;
            font-weight: 400;
            color: #FF2F00;
            margin-bottom: 2rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .manufacturing-facility-header p {
            font-family: 'Inter', sans-serif;
            font-size: 1.3rem;
            line-height: 1.7;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
        }

        .facility-address-card {
            background: white;
            padding: 4rem 3rem;
            border-radius: 24px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            gap: 3rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .facility-address-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #FF2F00, #FF2F00);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .facility-address-card:hover::before {
            transform: scaleX(1);
        }

        .facility-address-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            border-color: #FF2F00;
        }

        .facility-icon {
            font-size: 4rem;
            color: #FF2F00;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .facility-address-card:hover .facility-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .facility-details {
            flex: 1;
        }

        .facility-details h3 {
            font-family: 'Forum', serif;
            font-size: 2.5rem;
            font-weight: 400;
            color: #FF2F00;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .facility-details p {
            font-family: 'Inter', sans-serif;
            font-size: 1.2rem;
            line-height: 1.8;
            color: #64748b;
            margin: 0;
            font-weight: 400;
        }

        /* Enhanced Animations for Manufacturing Facility Section */
        .manufacturing-facility-section {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease-out;
        }

        .manufacturing-facility-section.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .manufacturing-facility-header {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .manufacturing-facility-section.animate .manufacturing-facility-header {
            opacity: 1;
            transform: translateY(0);
        }

        .facility-address-card {
            opacity: 0;
            transform: translateY(40px) scale(0.95);
            transition: all 0.8s ease-out 0.3s;
        }

        .manufacturing-facility-section.animate .facility-address-card {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .facility-icon {
            opacity: 0;
            transform: scale(0.5) rotate(-10deg);
            transition: all 0.8s ease-out 0.6s;
        }

        .manufacturing-facility-section.animate .facility-icon {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }

        .facility-details {
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.8s ease-out 0.8s;
        }

        .manufacturing-facility-section.animate .facility-details {
            opacity: 1;
            transform: translateX(0);
        }

        /* Responsive Design for Manufacturing Facility */
        @media (max-width: 768px) {
            .manufacturing-facility-section {
                padding: 6rem 0;
            }

            .manufacturing-facility-content {
                padding: 0 1.5rem;
            }

            .manufacturing-facility-header {
                margin-bottom: 4rem;
            }

            .manufacturing-facility-header h2 {
                font-size: 2.8rem;
            }

            .manufacturing-facility-header p {
                font-size: 1.1rem;
            }

            .facility-address-card {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
                padding: 3rem 2rem;
            }

            .facility-icon {
                font-size: 3rem;
            }

            .facility-details h3 {
                font-size: 2rem;
            }

            .facility-details p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .manufacturing-facility-section {
                padding: 4rem 0;
            }

            .manufacturing-facility-content {
                padding: 0 1rem;
            }

            .manufacturing-facility-header {
                margin-bottom: 3rem;
            }

            .manufacturing-facility-header h2 {
                font-size: 2.5rem;
            }

            .manufacturing-facility-header p {
                font-size: 1rem;
            }

            .facility-address-card {
                padding: 2.5rem 1.5rem;
                gap: 1.5rem;
            }

            .facility-icon {
                font-size: 2.5rem;
            }

            .facility-details h3 {
                font-size: 1.8rem;
            }

            .facility-details p {
                font-size: 0.95rem;
            }
        }

        /* Tablet Styles for Manufacturing Facility */
        @media (min-width: 769px) and (max-width: 1024px) {
            .manufacturing-facility-section {
                padding: 7rem 0;
            }

            .manufacturing-facility-header h2 {
                font-size: 3.2rem;
            }

            .manufacturing-facility-header p {
                font-size: 1.2rem;
            }

            .facility-address-card {
                padding: 3.5rem 2.5rem;
                gap: 2.5rem;
            }

            .facility-icon {
                font-size: 3.5rem;
            }

            .facility-details h3 {
                font-size: 2.2rem;
            }

            .facility-details p {
                font-size: 1.1rem;
            }
        }

        /* Large Desktop Styles for Manufacturing Facility */
        @media (min-width: 1400px) {
            .manufacturing-facility-content {
                max-width: 1400px;
            }

            .manufacturing-facility-header h2 {
                font-size: 4rem;
            }

            .manufacturing-facility-header p {
                font-size: 1.4rem;
            }

            .facility-address-card {
                padding: 5rem 4rem;
                gap: 4rem;
            }

            .facility-icon {
                font-size: 5rem;
            }

            .facility-details h3 {
                font-size: 3rem;
            }

            .facility-details p {
                font-size: 1.3rem;
            }
        }