@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:wght@400;700&display=swap');
        
        :root {
            --color-primary: #0A192F;
            --color-secondary: #FFD700;
            --color-accent: #61A3BA;
            --color-text-dark: #FFFFFF;
            --color-text-light: #0A192F;
            --color-background-dark: #0A192F;
            --color-background-light: #F0F8FF;
            --font-main: 'Montserrat', sans-serif;
            --font-heading: 'Playfair Display', serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            color: var(--color-text-dark);
            background-color: var(--color-background-dark);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 25, 47, 0.9);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        header.hidden {
            transform: translateY(-100%);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-secondary);
            text-decoration: none;
        }

        nav a {
            color: var(--color-text-dark);
            text-decoration: none;
            margin-left: 25px;
            font-weight: 700;
            position: relative;
            transition: color 0.3s ease;
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--color-secondary);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .burger-menu span {
            height: 3px;
            width: 25px;
            background-color: var(--color-secondary);
            margin: 4px 0;
            transition: all 0.3s ease;
        }

        .burger-menu.active .bar1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .burger-menu.active .bar2 {
            opacity: 0;
        }

        .burger-menu.active .bar3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        
        .nav-links {
            display: flex;
        }

        .nav-links.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            background-color: rgba(10, 25, 47, 0.95);
            padding-top: 100px;
            text-align: center;
            transform: translateX(100%);
            transition: transform 0.5s ease-in-out;
        }
        
        .nav-links.active.open {
            transform: translateX(0);
        }

        .nav-links.active a {
            margin: 20px 0;
            font-size: 1.5rem;
        }

        section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NHx8Zml0bmVzc3xlbnwwfHwwfHx8MA%3D%3D');
            background-size: cover;
            background-position: center;
            color: var(--color-text-dark);
            position: relative;
            justify-content: center;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
        }

        .hero h1 {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
            position: relative;
            z-index: 10;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
            position: relative;
            z-index: 10;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--color-secondary);
            color: var(--color-text-light);
            padding: 15px 30px;
            text-decoration: none;
            font-weight: 700;
            border-radius: 5px;
            transition: background-color 0.3s ease, transform 0.3s ease;
            position: relative;
            z-index: 10;
        }

        .cta-button:hover {
            background-color: var(--color-accent);
            transform: scale(1.05);
        }

        .about, .products, .prices, .gallery, .feedback, .faq {
            background-color: var(--color-background-dark);
            color: var(--color-text-dark);
            text-align: center;
        }

        .about h2, .products h2, .prices h2, .gallery h2, .feedback h2, .faq h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .about h2::after, .products h2::after, .prices h2::after, .gallery h2::after, .feedback h2::after, .faq h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: var(--color-secondary);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-top: 50px;
            text-align: left;
        }
        
        .about-image {
            flex: 1;
            transform: translateY(20px);
            opacity: 0;
            transition: transform 1s ease-out, opacity 1s ease-out;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .about-text {
            flex: 1;
            transform: translateY(20px);
            opacity: 0;
            transition: transform 1s ease-out, opacity 1s ease-out;
        }
        
        .about-text p {
            margin-bottom: 20px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .product-card {
            background-color: var(--color-background-light);
            color: var(--color-text-light);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            text-align: left;
            transform: translateY(20px);
            opacity: 0;
            transition: transform 0.8s ease-out, opacity 0.8s ease-out;
        }

        .product-card h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--color-accent);
            margin-bottom: 10px;
        }

        .product-card p {
            font-size: 1rem;
        }

        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .price-card {
            background-color: var(--color-background-light);
            color: var(--color-text-light);
            border-radius: 10px;
            padding: 40px 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            transform: translateY(20px);
            opacity: 0;
            transition: transform 0.8s ease-out, opacity 0.8s ease-out;
        }

        .price-card:hover {
            transform: translateY(-10px);
        }

        .price-card h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            color: var(--color-accent);
        }

        .price-card .price {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 15px 0;
            color: var(--color-primary);
        }

        .price-card ul {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }

        .price-card ul li {
            padding: 8px 0;
            border-bottom: 1px dashed #ccc;
        }

        .price-card .cta-button {
            padding: 10px 25px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 50px;
        }
        
        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: scale(0.95);
            opacity: 0;
            transition: transform 0.8s ease, opacity 0.8s ease;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.1);
        }

        .feedback-slider-container {
            position: relative;
            max-width: 800px;
            margin: 50px auto;
            overflow: hidden;
        }

        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-card {
            min-width: 100%;
            background-color: var(--color-background-light);
            color: var(--color-text-light);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            text-align: left;
            margin-right: 20px; /* Space between slides */
        }
        
        .feedback-card:last-child {
            margin-right: 0;
        }

        .feedback-card p {
            font-style: italic;
            margin-bottom: 20px;
        }

        .feedback-author {
            font-weight: 700;
            color: var(--color-accent);
        }

        .slider-controls {
            margin-top: 20px;
        }

        .slider-dot {
            height: 10px;
            width: 10px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .slider-dot.active {
            background-color: var(--color-secondary);
        }

        .faq-accordion {
            max-width: 800px;
            margin: 50px auto;
            text-align: left;
        }
        
        .faq-item {
            border-bottom: 1px solid var(--color-accent);
            padding: 20px 0;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--color-secondary);
        }

        .faq-question span {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active span {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            padding-top: 0;
        }

        .faq-answer.open {
            max-height: 200px;
            padding-top: 15px;
        }

        #disclaimer {
            background-color: #1a2a44;
            padding: 30px 0;
            text-align: center;
            font-size: 0.9rem;
            color: #999;
        }

        #disclaimer p {
            max-width: 900px;
            margin: 0 auto;
        }

        .contact-form-container {
            max-width: 600px;
            margin: 50px auto;
            background-color: var(--color-background-light);
            color: var(--color-text-light);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: scale(0.95);
            opacity: 0;
            transition: transform 0.8s ease, opacity 0.8s ease;
        }

        .contact-form-container h3 {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--color-primary);
            margin-bottom: 25px;
            text-align: center;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            background-color: #f9f9f9;
            color: var(--color-text-light);
        }
        
        .submit-button {
            background-color: var(--color-accent);
            color: var(--color-text-dark);
            padding: 15px 25px;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .submit-button:hover {
            background-color: var(--color-secondary);
            color: var(--color-text-light);
        }
        
        .modal {
            display: none;
            position: fixed;
            z-index: 1002;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.6);
        }
        
        .modal-content {
            background-color: var(--color-background-light);
            color: var(--color-text-light);
            margin: 15% auto;
            padding: 30px;
            border: 1px solid #888;
            width: 80%;
            max-width: 400px;
            border-radius: 10px;
            text-align: center;
            position: relative;
            animation: fadeIn 0.5s;
        }

        .close-modal {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            position: absolute;
            top: 10px;
            right: 20px;
        }

        .close-modal:hover,
        .close-modal:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

        footer {
            background-color: #0A192F;
            color: #ccc;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 3px solid var(--color-accent);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            text-align: left;
        }
        
        .footer-section {
            width: 25%;
            padding: 10px;
        }
        
        .footer-section h4 {
            font-family: var(--font-heading);
            color: var(--color-secondary);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .footer-section p, .footer-section a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: var(--color-secondary);
        }
        
        .footer-bottom {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #444;
            text-align: center;
            width: 100%;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 25, 47, 0.95);
            color: var(--color-text-dark);
            padding: 15px;
            text-align: center;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
            z-index: 1001;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            animation: slideUp 0.5s ease-out;
        }

        .cookie-banner a {
            color: var(--color-accent);
            text-decoration: underline;
        }

        .cookie-banner button {
            background-color: var(--color-secondary);
            color: var(--color-text-light);
            border: none;
            padding: 8px 15px;
            cursor: pointer;
            border-radius: 5px;
            font-weight: 700;
            transition: background-color 0.3s ease;
        }
        
        .cookie-banner button:hover {
            background-color: var(--color-accent);
            color: var(--color-text-dark);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { transform: translateY(100%); }
            to { transform: translateY(0); }
        }
        
        /* Media Queries */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .about-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .footer-section {
                width: 100%;
                margin-bottom: 20px;
            }
        }

