        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #222222;
            --secondary-color: #666666;
            --dark-bg: #1a1a1a;
            --light-text: #f5f5f5;
            --body-text: #333;
            --accent: #8B4513;
            --header-bg: #ffffff;
            --header-text: #222222;
            --header-shadow: rgba(0, 0, 0, 0.08);
            --max-width: 1200px;
        }

        /* Foundation Breakpoints:
           Small: 0-640px
           Medium: 641px-1024px
           Large: 1025px-1440px
           XLarge: 1441px-1920px
           XXLarge: 1921px+ */

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--body-text);
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Skip to main content link for screen readers */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: var(--primary-color);
            color: white;
            padding: 0.5rem 1rem;
            text-decoration: none;
            border-radius: 0 0 5px 0;
            z-index: 2000;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Header & Navigation - Updated for white background */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--header-bg);
            z-index: 1000;
            box-shadow: 0 2px 10px var(--header-shadow);
            border-bottom: 1px solid #f0f0f0;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: transform 0.3s ease;
            max-width: 200px;
            padding: 1rem 0;
        }

        .logo:hover {
            transform: translateY(-2px);
        }

        .logo img {
            max-width: 200px;
            height: auto;
            display: block;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            color: var(--header-text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }

        .nav-links i {
            font-size: 1rem;
            opacity: 0.7;
            color: var(--accent);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a:hover i {
            opacity: 1;
        }

        .nav-links a:hover::after,
        .nav-links a:focus::after {
            width: 100%;
        }

        .nav-links a:focus {
            outline: 2px solid var(--accent);
            outline-offset: 4px;
            border-radius: 4px;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: 2px solid transparent;
            color: var(--header-text);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle:hover {
            background: rgba(34, 34, 34, 0.05);
            color: var(--primary-color);
        }

        .mobile-menu-toggle:focus {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }

        /* Hero Section - Updated for accessibility */
        .hero {
            min-height: 100vh;
            background: #1a1a1a url('../images/header-img1.webp') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: 140px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(26, 26, 26, 0.2);
            z-index: 1;
        }

        .hero-content {
            text-align: center;
            color: var(--light-text);
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease;
            background: rgba(26, 26, 26, 0.9);
            padding: 3rem 2rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            max-width: 800px;
            margin: 0 auto;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            margin-bottom: 1rem;
            font-weight: 800;
            letter-spacing: -1px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .hero .tagline {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            opacity: 0.95;
            margin-bottom: 2rem;
            font-weight: 300;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2.5rem;
            background: var(--accent);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-button i {
            transition: transform 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
            background: #A0522D;
        }

        .cta-button:hover i {
            transform: translateX(5px);
        }

        /* Product Section */
        .product {
            padding: 5rem 0;
            background: #ffffff;
        }

        .product-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        .product-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        .product-image {
            aspect-ratio: 4/5; /* 4:5 ratio */
            background: linear-gradient(135deg, #f0f0f0, #e0e0e0); /* Subtle fallback background */
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            display: block;
        }

        .product-info h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .product-info p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #666;
            line-height: 1.8;
        }

        .product-features {
            list-style: none;
            margin: 2rem 0;
        }

        .product-features li {
            padding: 0.5rem 0;
            padding-left: 2rem;
            position: relative;
            color: var(--body-text);
        }

        .product-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--accent);
            font-size: 1.2rem;
        }

        .product .cta-button {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
        }

        .product .cta-button:hover {
            background: linear-gradient(135deg, #111111, #555555);
            transform: translateY(-3px);
        }

        /* About Section */
        .about {
            padding: 5rem 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: var(--light-text);
        }

        .about-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .about-content a {
            color:#FFFFFF;
            text-decoration: underline;
        }

        .about-content a:hover {
            color:#F2F2F2;
            text-decoration: none;
        }

        .about h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        .about h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--accent);
        }

        .about p {
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.9;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 0;
            background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
        }

        .contact-content {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 2rem;
            color: var(--primary-color);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        #gencontactform {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            text-align: left;
        }

        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--body-text);
        }

        .form-group input,
        .form-group textarea {
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
            background: white;
        }

        .form-group input.form-control,
        .form-group textarea.form-control {
            width: 100%;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        input[id="scheck"] {
            max-width: 80px;
            text-transform: uppercase;
        }

        .required {
            color: #d32f2f;
            font-weight: bold;
        }

        .submit-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, #111111, #555555);
        }

        .submit-btn i {
            font-size: 1.2rem;
        }

        /* Footer */
        footer {
            background: var(--dark-bg);
            color: var(--light-text);
            padding: 2rem 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
        }

        .social-links a {
            color: var(--light-text);
            font-size: 1.5rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-links a:hover {
            color: var(--accent);
            transform: translateY(-3px);
        }

        /* Responsive Design - Foundation Breakpoints */
        
        /* Small devices (0-640px) */
        @media screen and (max-width: 640px) {
            nav {
                padding: 1.5rem 0;
            }

            .logo {
                max-width: 150px;
                padding: 0.75rem 0;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: white;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.3s ease;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links.active::before {
                content: '';
                position: fixed;
                top: 0;
                left: 0;
                right: 70%;
                bottom: 0;
                background: rgba(0, 0, 0, 0.5);
                z-index: -1;
            }

            .mobile-menu-close {
                position: absolute;
                top: 1rem;
                right: 1rem;
                background: none;
                border: none;
                color: var(--header-text);
                font-size: 2rem;
                cursor: pointer;
                padding: 0.5rem;
            }

            .mobile-menu-close:focus {
                outline: 2px solid var(--primary-color);
                outline-offset: 2px;
            }

            .mobile-menu-toggle {
                display: block;
                z-index: 1001;
            }

            .hero {
                padding-top: 100px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .product-features {
                font-size: 0.95rem;
            }
        }

        /* Medium devices (641px-1024px) */
        @media screen and (min-width: 641px) {
            .product-grid {
                grid-template-columns: 1fr 1fr;
            }

            .footer-content {
                justify-content: space-around;
            }
        }

        /* Large devices (1025px-1440px) */
        @media screen and (min-width: 1025px) {
            .container {
                padding: 0 2rem;
            }

            .hero-content {
                max-width: 80%;
            }

            .product-info {
                padding: 0 2rem;
            }
        }

        /* XLarge devices (1441px-1920px) */
        @media screen and (min-width: 1441px) {
            :root {
                --max-width: 1400px;
            }

            .hero h1 {
                font-size: 5.5rem;
            }
        }

        /* XXLarge devices (1921px+) */
        @media screen and (min-width: 1921px) {
            :root {
                --max-width: 1600px;
            }

            body {
                font-size: 18px;
            }
        }

        /* Accessibility */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        /* Focus styles for keyboard navigation */
        a:focus,
        button:focus,
        input:focus,
        textarea:focus {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
        }

        /* Reduced motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }