        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #2563eb;
            --primary-hover: #1d4ed8;
            --text: #374151;
            --text-light: #6b7280;
            --bg-light: #f3f4f6;
            --white: #ffffff;
            --gray-800: #1f2937;
            --gray-300: #d1d5db;
            --blue-50: #eff6ff;
            --blue-100: #dbeafe;
            --blue-600: #2563eb;
            --blue-700: #1d4ed8;
            --blue-800: #1e40af;
            --blue-900: #1e3a8a;
            --accent: #f97316; /* Orange accent color */
            --accent-hover: #ea580c; /* Darker orange for hover */
            --black: #000000;
        }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: #f9fafb;
        }
        
        /* Container */
        .container {
            width: 100%;
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header and Navigation */
        header {
            background-color: var(--white);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            height: 100%; /* Make logo vertically centered in header */
        }

        .logo img {
            height: 60px;   /* adjust depending on how tall your header is */
            width: auto;    /* keep aspect ratio */
            display: block;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            margin-left: 1.5rem;
        }
        
        .nav-link {
            color: var(--text);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            gap: 0.5rem;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-hover);
        }
        
        .btn-outline {
            border: 1px solid var(--accent);
            color: var(--accent);
            background: transparent;
        }
        
        .btn-outline:hover {
            background-color: var(--accent-hover);
            color: var(--white);
        }
        
        .btn-lg {
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
        }
        
        .btn-sm {
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            background: linear-gradient(to right, #2563eb, #1e40af);
            color: white;
            padding: 5rem 0;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../assets/jar2.png') center/cover no-repeat;
            opacity: 0.4;
        }
        
        .hero-content {
            position: relative;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        /* Section Styles */
        .section {
            padding: 2rem 0;
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--gray-800);
        }
        
        .section-subtitle {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 3rem;
            color: var(--text-light);
        }
        
        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 2rem;
        }
        
        .product-card {
            background-color: var(--blue-50);
            padding: 2rem;
            border-radius: 0.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .product-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .product-content {
                flex-direction: row;
            }
        }
        
        .product-image {
            width: 100%;
            display: flex;
            justify-content: center;
        }
        
        @media (min-width: 768px) {
            .product-image {
                width: 33.333%;
            }
        }
        
        .product-img {
            height: 12rem;
            object-fit: contain;
            border-radius: 0.5rem;
        }
        
        .product-details {
            width: 100%;
        }
        
        @media (min-width: 768px) {
            .product-details {
                width: 66.667%;
            }
        }
        
        .product-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .product-icon {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background-color: var(--blue-100);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.25rem;
        }
        
        .product-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-left: 0.75rem;
            color: var(--gray-800);
        }
        
        .product-description {
            color: var(--text);
            margin-bottom: 1.5rem;
        }
        
        .benefits-title {
            font-weight: 500;
            color: var(--gray-800);
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
        }
        
        .benefits-list {
            list-style: none;
            margin-bottom: 1.5rem;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.5rem;
        }
        
        .benefit-icon {
            width: 1rem;
            height: 1rem;
            border-radius: 50%;
            background-color: var(--blue-100);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue-700);
            font-size: 0.75rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }
        
        .benefit-text {
            margin-left: 0.5rem;
            font-size: 0.875rem;
            color: var(--text);
        }
        
        .product-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 1rem;
        }
        
        .product-price {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--gray-800);
        }
        
        /* CTA Section */
        .cta {
            background-color: var(--blue-700);
            color: white;
            border-radius: 0.5rem;
            padding: 3rem;
            text-align: center;
        }
        
        .cta .btn-outline {
            border-color: white;
            color: white;
            background: transparent;
        }
        
        .cta .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Newsletter */
        .newsletter {
            background-color: var(--blue-50);
            padding: 3rem 0;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 400px;
            margin: 1.5rem auto 0;
            gap: 0.5rem;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 1px solid var(--gray-300);
            border-radius: 0.375rem;
            font-size: 1rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--gray-800);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-heading {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: #d1d5db;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .footer-contact {
            list-style: none;
        }
        
        .footer-contact li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            font-size: 0.875rem;
            color: #d1d5db;
        }
        
        .footer-contact i {
            margin-right: 0.75rem;
            color: var(--accent);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            color: #d1d5db;
            transition: color 0.3s;
        }
        
        .social-links a:hover {
            color: var(--primary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            color: #9ca3af;
            font-size: 0.875rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: var(--white);
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .nav-item {
                margin: 0.5rem 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .product-footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
        }