:root {
            --color-primary: #1a424e;
            --color-secondary: #ff844f;
            --color-accent: #f8c291;
            --color-text: #e8e8e8;
            --color-bg: #0d1b2a;
            --font-main: 'Arial', sans-serif;
            --font-retro: 'Courier New', monospace;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: var(--font-retro);
            color: var(--color-accent);
            text-transform: uppercase;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            letter-spacing: 2px;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            letter-spacing: 1.5px;
            margin-bottom: 2rem;
            text-align: center;
        }

        h3 {
            font-size: clamp(1rem, 3vw, 2.5rem);
            margin-bottom: 1rem;
        }

        a {
            color: var(--color-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--color-accent);
        }

        section {
            padding: 80px 5%;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 27, 42, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--color-primary);
        }

        .logo {
            font-family: var(--font-retro);
            font-size: 1.5rem;
            color: var(--color-accent);
            text-transform: uppercase;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            font-family: var(--font-retro);
            font-size: 1.1rem;
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .burger-menu span {
            width: 30px;
            height: 3px;
            background-color: var(--color-accent);
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background-color: rgba(13, 27, 42, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 3rem;
                transition: right 0.5s ease-in-out;
            }

            .nav-links.active {
                right: 0;
            }

            .burger-menu {
                display: flex;
            }

            .price-card .price, h2{
                font-size: 2em !important;
            }
           
        }

        .hero {
            background: linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.7)), url('../img/05.webp') center/cover no-repeat fixed;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            flex-direction: column;
            padding-top: 100px;
            position: relative;
        }

        .hero h1 {
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: clamp(1rem, 2vw, 1.5rem);
            max-width: 800px;
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background-color: var(--color-secondary);
            color: var(--color-bg);
            text-transform: uppercase;
            font-weight: bold;
            border-radius: 5px;
           
            transition: all 0.3s ease 0s;
        }

        .cta-button:hover {
            background-color: var(--color-accent);
            transform: scale(1.05);
            color: var(--color-bg);
        }

        .about {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .about .image-wrapper {
            flex: 1;
            max-width: 500px;
        }

        .about .image-wrapper img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .about .content {
            flex: 2;
        }

        @media (max-width: 900px) {
            .about {
                flex-direction: column;
            }
        }

        .products {
            background-color: var(--color-primary);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-card {
            background-color: var(--color-bg);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-card img {
            width: 100%;
            max-height: 350px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 1.5rem;
        }

        .prices {
            text-align: center;
        }

        .prices-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
        }

        .price-card {
            background-color: var(--color-primary);
            padding: 2.5rem;
            border-radius: 15px;
            width: 300px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .price-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
        }

        .price-card.free {
            background-color: #2b5665;
            border: 2px dashed var(--color-accent);
        }

        .price-card h3 {
            color: var(--color-accent);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .price-card .price {
            font-size: 3rem;
            color: var(--color-secondary);
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }

        .price-card li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 5px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        }

        .feedback {
            background-color: var(--color-primary);
        }

        .feedback-slider {
            display: flex;
            overflow-x: scroll;
            scroll-snap-type: x mandatory;
            gap: 20px;
            padding-bottom: 20px;
        }

        .feedback-slider::-webkit-scrollbar {
            display: none;
        }

        .feedback-card {
            flex: 0 0 80%;
            scroll-snap-align: start;
            background-color: var(--color-bg);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .feedback-card blockquote {
            font-style: italic;
            margin-bottom: 1rem;
            border-left: 3px solid var(--color-secondary);
            padding-left: 1rem;
        }

        .feedback-card cite {
            display: block;
            font-weight: bold;
            color: var(--color-accent);
        }

        .faq .faq-item {
            border-bottom: 1px solid var(--color-primary);
            padding: 20px 0;
            cursor: pointer;
        }

        .faq .faq-item h3 {
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-item .answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
        }

        .faq-item.active .answer {
            max-height: 200px;
            transition: max-height 0.4s ease-in;
        }

        .disclaimer {
            background-color: var(--color-primary);
            padding: 1rem 5%;
            font-size: 0.8rem;
            text-align: center;
            color: #8c9fae;
            border-top: 1px solid var(--color-secondary);
        }

        .cookie-banner {
            position: fixed;
            background-color: var(--color-primary);
            color: var(--color-text);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            z-index: 2000;
            border: 2px solid var(--color-secondary);
            display: none;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .footer {
            background-color: var(--color-bg);
            padding: 40px 5%;
        }

        .footer-body{
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .footer h3 {
            color: var(--color-accent);
            margin-bottom: 1rem;
            font-size: 1em;
            text-align: center  ;
        }

        .footer .footer-section {
            flex-basis: 250px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .contact-form-popup {
            background-color: var(--color-primary);
            color: var(--color-text);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 2px solid var(--color-secondary);
            width: 100%;
            max-width: 500px;
            margin: 0px auto 48px;
        
        }

        .contact-form-popup h3 {
            margin-bottom: 1.5rem;
        }

        .contact-form-popup form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-form-popup input {
            padding: 10px;
            border: 1px solid var(--color-secondary);
            background-color: var(--color-bg);
            color: var(--color-text);
            border-radius: 5px;
        }

        .contact-form-popup button {
            background-color: var(--color-secondary);
            color: var(--color-bg);
            border: none;
            padding: 12px;
            text-transform: uppercase;
            font-weight: bold;
            cursor: pointer;
            border-radius: 5px;
        }
        
        .cookie-banner {
            bottom: 20px;
            right: 20px;
            width: 90%;
            max-width: 400px;
        }

        .cookie-banner.active {
            display: block;
        }

        .cookie-banner p {
            margin-bottom: 1rem;
        }

        .cookie-banner button {
            background-color: var(--color-secondary);
            color: var(--color-bg);
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 5px;
        }

        .close-popup {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 2rem;
            color: var(--color-accent);
            cursor: pointer;
        }
        
        .animated {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .animated.visible {
            opacity: 1;
            transform: translateY(0);
        }

