
        :root {
            --primary: #0a2342;
            --secondary: #2c6e49;
            --accent: #ff6b6b;
            --light: #f8f9fa;
            --dark: #212529;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            overflow-x: hidden;
            background-color: #f9fafb;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            color: var(--primary);
        }
        
        .navbar {
            background-color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary) !important;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            margin: 0 0.5rem;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--secondary) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 100%;
        }
        
        .hero-section {
            background: linear-gradient(135deg, rgba(10,35,66,0.9) 0%, rgba(44,110,73,0.85) 100%), url('https://images.unsplash.com/photo-1535914254981-b5012eebbd15?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 7rem 0 5rem;
            position: relative;
        }
        
        .hero-content {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }
        
        .hero-content h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            color: white;
        }
        
        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }
        
        .btn-primary {
            background-color: var(--accent);
            border-color: var(--accent);
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #e55a5a;
            border-color: #e55a5a;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .section-title h2 {
            font-size: 2.3rem;
            margin-bottom: 1rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .product-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
            height: 100%;
            background: white;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .product-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover img {
            transform: scale(1.05);
        }
        
        .product-card .card-body {
            padding: 1.5rem;
        }
        
        .product-card .card-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        
        .product-card .card-text {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        
        .stats-box {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            margin-bottom: 1.5rem;
        }
        
        .stats-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .stats-box h3 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }
        
        .stats-box p {
            font-size: 1.1rem;
            margin: 0;
            color: #555;
        }
        
        .testimonial {
            background: white;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .testimonial:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .testimonial::before {
            content: "";
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: rgba(10,35,66,0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial p {
            font-style: italic;
            margin-bottom: 1.5rem;
            padding-left: 2rem;
            position: relative;
            z-index: 1;
        }
        
        .testimonial strong {
            display: block;
            text-align: right;
            color: var(--primary);
        }
        
        .stars {
            color: #ffc107;
            margin-bottom: 1rem;
        }
        
        .footer {
            background-color: var(--primary);
            color: #fff;
            padding: 60px 0 30px;
            background-image: url('https://images.unsplash.com/photo-1513151233558-d860c5398176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 35, 66, 0.9);
        }
        
        .footer-content {
            position: relative;
            z-index: 2;
        }
        
        .footer h5 {
            color: white;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .footer p {
            color: rgba(255,255,255,0.7);
        }
        
        .footer a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .footer a:hover {
            color: white;
            text-decoration: none;
            padding-left: 5px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }
        
        .social-icons a:hover {
            background: var(--accent);
            transform: translateY(-5px);
            padding-left: 0;
        }
        
        .newsletter-form .form-control {
            background: rgba(255,255,255,0.1);
            border: none;
            color: white;
            border-radius: 50px 0 0 50px;
            height: 50px;
        }
        
        .newsletter-form .form-control::placeholder {
            color: rgba(255,255,255,0.6);
        }
        
        .newsletter-form .btn {
            border-radius: 0 50px 50px 0;
            background: var(--accent);
            border-color: var(--accent);
            height: 50px;
            padding: 0 20px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
        }
        
        .category-filter {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        
        .category-filter .btn {
            margin: 0.5rem;
            border-radius: 50px;
            padding: 0.5rem 1.5rem;
            background: transparent;
            color: var(--dark);
            border: 1px solid #ddd;
            transition: all 0.3s ease;
        }
        
        .category-filter .btn:hover,
        .category-filter .btn.active {
            background: var(--secondary);
            color: white;
            border-color: var(--secondary);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(44, 110, 73, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--secondary);
            font-size: 1.5rem;
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s;
            background: white;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .welcome-section {
            padding: 80px 0;
            text-align: center;
            background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            position: relative;
            color: white;
        }
        
        .welcome-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 35, 66, 0.85);
        }
        
        .welcome-content {
            position: relative;
            z-index: 2;
        }
        
        .welcome-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .welcome-subtitle {
            font-size: 3.5rem;
            margin-bottom: 30px;
            color: white;
            font-weight: 700;
        }
        
        .welcome-description {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 50px;
            color: rgba(255,255,255,0.9);
            line-height: 1.8;
        }
        
        .stats-container {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.2rem;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .products-section {
            background: url('https://images.unsplash.com/photo-1512436991641-6745cdb1723f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            padding: 80px 0;
            position: relative;
        }
        
        .products-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(249, 250, 251, 0.9);
        }
        
        .products-content {
            position: relative;
            z-index: 2;
        }
        
        .testimonials-section {
            background: url('https://images.unsplash.com/photo-1556228720-195a672e8a03?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            padding: 80px 0;
            position: relative;
        }
        
        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(249, 250, 251, 0.9);
        }
        
        .testimonials-content {
            position: relative;
            z-index: 2;
        }
        
        .features-section {
            background: url('https://images.unsplash.com/photo-1518655048521-f130df041f66?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            padding: 80px 0;
            position: relative;
        }
        
        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(249, 250, 251, 0.9);
        }
        
        .features-content {
            position: relative;
            z-index: 2;
        }
        
        .newsletter-section {
            background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            padding: 80px 0;
            position: relative;
            color: white;
        }
        
        .newsletter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(44, 110, 73, 0.9);
        }
        
        .newsletter-content {
            position: relative;
            z-index: 2;
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.3rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .hero-section {
                padding: 5rem 0 3rem;
            }
            
            .welcome-subtitle {
                font-size: 2.5rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }
