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

        body {
            font-family: 'Cormorant Garamond', sans-serif;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            font-family: 'Cormorant Garamond', serif;
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 2rem 0;
        }

        .nav-container {
            font-family: 'Cormorant Garamond', serif;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.8rem;
            font-weight: 700;
            color: #2d5016;
            text-decoration: none;
        }

        .nav-links {
            font-family: 'Cormorant Garamond', serif;
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .dropdown {
            font-family: 'Cormorant Garamond', serif;
            position: relative;
        }

        .dropbtn {
            background: none;
            border: none;
            color: #333;
            font-size: 1.2rem;
            font-family: 'Cormorant Garamond', serif;
            cursor: pointer;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }

        .dropbtn:hover {
            color: #2d5016;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background: white;
            min-width: 220px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            top: 100%;
            left: 0;
            margin-top: 0.5rem;
            overflow: hidden;
        }

        .dropdown-content a {
            color: #333;
            padding: 1rem 1.5rem;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
        }

        .dropdown-content a:hover {
            background: #f0f7e8;
            color: #2d5016;
            padding-left: 2rem;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }
        
        
        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        #hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: -2;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: -1;
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 1;
            max-width: 800px;
            padding: 2rem;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }

        .slogan {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 3rem;
            background: #2d5016;
            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(45, 80, 22, 0.4);
        }

        .cta-button:hover {
            background: #3d6b1f;
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(45, 80, 22, 0.6);
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 3rem 2rem 1.5rem;
        }

        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-links {
            display: flex;
            gap: 3rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #7fb843;
        }

        .contact-btn {
            background: #2d5016;
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
        }

        .contact-btn:hover {
            background: #3d6b1f;
            transform: scale(1.05);
        }

        .copyright {
            text-align: center;
            color: #888;
            font-size: 0.9rem;
            padding-top: 2rem;
            border-top: 1px solid #333;
            width: 100%;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            position: relative;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
        }

        .close {
            position: absolute;
            right: 1.5rem;
            top: 1.5rem;
            font-size: 2rem;
            cursor: pointer;
            color: #666;
            transition: color 0.3s ease;
        }

        .close:hover {
            color: #2d5016;
        }

        .modal-content h2 {
            font-family: 'Playfair Display', serif;
            color: #2d5016;
            margin-bottom: 1rem;
        }

        .support-info {
            background: #f0f7e8;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }

        .support-info p {
            margin: 0.5rem 0;
            color: #333;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin: 0.5rem 0;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            transition: border-color 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #2d5016;
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            background: #2d5016;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 25px;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            width: 100%;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .submit-btn:hover {
            background: #3d6b1f;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .slogan {
                font-size: 1.2rem;
            }

            .nav-links {
                gap: 1rem;
            }
        }
        
       
        h2 {
            text-align: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 300;
            color: #2c3e50;
            letter-spacing: 2px;
            padding: 9rem 0;
        }

        .elements-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .element-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            width: 280px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .element-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .element-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        .element-info {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .element-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .element-description {
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            line-height: 1.5;
            flex-grow: 1;
        }

        .element-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 0.2rem;
            border-top: 1px solid #ecf0f1;
        }

        .price {
            font-size: 1.5rem;
            font-weight: 600;
            color: #27ae60;
        }

        .cart-icon {
            background: #27ae60;
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .cart-icon:hover {
            background: #229954;
            transform: scale(1.1);
        }

        .cart-icon:active {
            transform: scale(0.95);
        }

        .element-grid {
            
            gap: 1.5rem;
            }

        .element-card {
            margin: 1rem;
            padding: 0.1rem;
            width: 600%;
            max-width: 400px;
            }
        
        .container2 {
            max-width: 900px;
            margin: 50px auto;
            padding: 20px;
            background-color: #DADDD8;
        }
        
        
        
        
        
        
        
        
       
    </style>