@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Orbitron:wght@400;700&display=swap');

        :root {
            --color-primary: #5A2D82;
            --color-secondary: #9B5DE5;
            --color-accent: #F15BB5;
            --color-text: #E5D5EF;
            --color-bg: #1A0D2B;
            --color-gradient-start: #3A0CA3;
            --color-gradient-end: #4361EE;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        /* General styles */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3 {
            font-family: 'Orbitron', sans-serif;
            text-align: center;
            margin-bottom: 20px;
            color: var(--color-accent);
            text-shadow: 0 0 10px var(--color-accent);
        }

        h1 {
            font-size: 3em;
            text-transform: uppercase;
        }

        h2 {
            font-size: 2.5em;
            text-transform: uppercase;
        }

        h3 {
            font-size: 1.8em;
            text-transform: uppercase;
        }

        p {
            margin-bottom: 1em;
            font-size: 1.1em;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            background: var(--color-accent);
            color: var(--color-bg);
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            border-radius: 50px;
            transition: transform 0.3s ease, background-color 0.3s ease;
            box-shadow: 0 0 15px var(--color-accent);
        }

        .btn:hover {
            transform: scale(1.05);
            background: #FF69B4;
        }

        section {
            padding: 100px 0;
            position: relative;
            z-index: 2;
        }

        /* Header */
        header {
            background-color: rgba(26, 13, 43, 0.9);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 100;
            backdrop-filter: blur(5px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            transition: background-color 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8em;
            color: var(--color-accent);
            text-decoration: none;
            text-transform: uppercase;
            text-shadow: 0 0 8px var(--color-accent);
        }

        .nav-menu {
            display: flex;
            gap: 25px;
        }

        .nav-menu a {
            color: var(--color-text);
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--color-accent);
            transition: width 0.3s ease, left 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
            left: 0;
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger-bar {
            width: 30px;
            height: 3px;
            background-color: var(--color-accent);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-image: linear-gradient(rgba(26, 13, 43, 0.7), rgba(26, 13, 43, 0.7)), url('../img/03.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: 1;
        }

        .hero-content {
            max-width: 800px;
            animation: fadeIn 2s ease-in-out;
        }

        .hero h1 {
            font-size: 4em;
            margin-bottom: 20px;
            color: var(--color-accent);
            text-shadow: 0 0 20px var(--color-accent);
        }

        .hero p {
            font-size: 1.5em;
            margin-bottom: 40px;
            animation: slideInUp 1.5s ease-in-out;
        }
        
        /* About Section */
        .about {
            background-color: var(--color-primary);
            color: var(--color-text);
            padding: 80px 0;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-image {
            flex: 1;
            text-align: center;
        }

        .about-image img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease;
        }
        .about-image img:hover {
            transform: scale(1.05) rotate(2deg);
        }

        /* Products Section */
        .products {
            background-color: var(--color-bg);
            padding: 80px 0;
            position: relative;
        }
        
        .products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/01.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: -1;
        }

        .product-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .product-card {
            background: rgba(26, 13, 43, 0.8);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
            border: 2px solid var(--color-primary);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            border-color: var(--color-accent);
        }

        .product-card h3 {
            color: var(--color-accent);
            margin-top: 0;
            margin-bottom: 15px;
        }

        .product-card p {
            font-size: 1em;
            margin-bottom: 0;
        }

        /* Prices Section */
        .prices {
            background-color: var(--color-primary);
            color: var(--color-text);
            padding: 80px 0;
            text-align: center;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }

        .price-plans {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .price-card {
            background: rgba(26, 13, 43, 0.8);
            border: 2px solid var(--color-secondary);
            border-radius: 15px;
            padding: 40px;
            width: 320px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .price-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .price-card.featured {
            transform: scale(1.05);
            border-color: var(--color-accent);
            box-shadow: 0 0 30px var(--color-accent);
        }

        .price-card.featured .plan-name {
            background: var(--color-accent);
            color: var(--color-bg);
        }

        .plan-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5em;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .plan-price {
            font-family: 'Orbitron', sans-serif;
            font-size: 3em;
            font-weight: bold;
            color: var(--color-accent);
            margin-bottom: 15px;
        }

        .plan-price span {
            font-size: 0.5em;
            color: var(--color-text);
        }

        .plan-features {
            list-style: none;
            padding: 0;
            text-align: left;
            margin-bottom: 20px;
        }

        .plan-features li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }

        .plan-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #39FF14;
        }

        .price-card .btn {
            width: 100%;
        }

        /* Gallery Section */
        .gallery {
            background-color: var(--color-bg);
            padding: 80px 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.1);
        }
        
        /* Feedback Section */
        .feedback {
            background-color: var(--color-primary);
            padding: 80px 0;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }

        .slider-container {
            position: relative;
            overflow: hidden;
            width: 80%;
            margin: 0 auto;
        }

        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            background: rgba(26, 13, 43, 0.8);
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            border: 2px solid var(--color-secondary);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .slide blockquote {
            font-style: italic;
            margin-bottom: 15px;
            font-size: 1.2em;
        }

        .slide cite {
            display: block;
            font-style: normal;
            font-weight: bold;
            color: var(--color-accent);
        }

        .slider-nav {
            text-align: center;
            margin-top: 20px;
        }

        .dot {
            height: 10px;
            width: 10px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: background-color 0.6s ease;
        }

        .dot.active {
            background-color: var(--color-accent);
        }

        /* FAQ Section */
        .faq {
            background-color: var(--color-bg);
            padding: 80px 0;
        }

        .faq-items {
            max-width: 800px;
            margin: 50px auto 0;
        }

        .faq-item {
            margin-bottom: 20px;
            background: rgba(26, 13, 43, 0.8);
            border-radius: 10px;
            border: 1px solid var(--color-primary);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            position: relative;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background: var(--color-primary);
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5em;
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            transform: translateY(-50%) rotate(45deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
        }

        .faq-answer p {
            padding-top: 15px;
        }

        .faq-answer.show {
            max-height: 300px;
            padding-bottom: 20px;
        }

        /* Contact Form */
        .contact-form-section {
            padding: 80px 0;
            background-image: url('../img/08.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            z-index: 1;
        }

        .contact-form-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(26, 13, 43, 0.8);
            z-index: -1;
        }

        .contact-form-container {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(26, 13, 43, 0.9);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
            border: 2px solid var(--color-accent);
        }
        
        .contact-form-container h2 {
            margin-bottom: 30px;
            text-shadow: 0 0 10px var(--color-accent);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--color-text);
            font-weight: bold;
        }

        .form-group input {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--color-secondary);
            border-radius: 8px;
            background-color: var(--color-bg);
            color: var(--color-text);
            font-size: 1em;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--color-accent);
            box-shadow: 0 0 8px var(--color-accent);
        }
        
        .contact-btn {
            width: 100%;
            font-size: 1.2em;
        }

        /* Pop-up */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .popup-content {
            background: var(--color-primary);
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 0 20px var(--color-accent);
            position: relative;
            animation: fadeIn 0.5s ease-in-out;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2em;
            color: var(--color-accent);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .close-btn:hover {
            transform: rotate(90deg);
        }

        /* Disclaimer */
        .disclaimer {
            padding: 20px;
            text-align: center;
            font-size: 0.9em;
            color: #aaa;
            background: #11081a;
            border-top: 1px solid #332244;
        }
        
        .disclaimer a {
            color: var(--color-secondary);
            text-decoration: none;
        }

        /* Footer */
        footer {
            background-color: #0d0613;
            padding: 40px 20px;
            text-align: center;
            border-top: 5px solid var(--color-accent);
        }

        .footer-content {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5em;
            color: var(--color-accent);
            text-transform: uppercase;
            text-shadow: 0 0 5px var(--color-accent);
            margin-bottom: 15px;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
            text-align: left;
        }
        
        .footer-section h4 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2em;
            margin-bottom: 15px;
            color: var(--color-accent);
            text-transform: uppercase;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: var(--color-text);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section ul li a:hover {
            color: var(--color-accent);
        }

        address {
            font-style: normal;
        }

        .footer-bottom {
            margin-top: 40px;
            font-size: 0.9em;
            color: #aaa;
            border-top: 1px solid #332244;
            padding-top: 20px;
        }

        .footer-bottom a {
            color: var(--color-accent);
            text-decoration: none;
        }

        /* Cookie banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.9);
            color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
            flex-direction: column;
            align-items: center;
            max-width: 500px;
            text-align: center;
        }

        .cookie-banner p {
            margin-bottom: 15px;
        }

        .cookie-banner a {
            color: var(--color-accent);
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            background: var(--color-accent);
            color: var(--color-bg);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .cookie-btn:hover {
            background: #FF69B4;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInUp {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* Media Queries */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                right: 0;
                background-color: rgba(26, 13, 43, 0.95);
                width: 100%;
                text-align: center;
                padding: 20px 0;
                transition: transform 0.3s ease-in-out;
            }

            .nav-menu.active {
                display: flex;
            }
            
            .burger-menu {
                display: flex;
                position: relative;
                z-index: 101;
            }

            .about-content {
                flex-direction: column;
            }
            
            .price-plans {
                flex-direction: column;
                align-items: center;
            }
            
            .hero h1 {
                font-size: 2.5em;
            }

            .hero p {
                font-size: 1.2em;
            }

            h2{
                font-size: 1.5em !important;
            }
        }

