:root {
            --primary-color: #f75d59;
            --secondary-color: #2e3192;
            --accent-color: #ffb700;
            --text-color: #2c3e50;
            --background-color: #ecf0f1;
            --dark-color: #1e2531;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            background-color: var(--background-color);
            color: var(--text-color);
            overflow-x: hidden;
        }

        h1, h2, h3 {
            color: var(--secondary-color);
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(90deg, var(--secondary-color) 0%, var(--dark-color) 100%);
            color: #fff;
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8em;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .main-nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 25px;
        }

        .main-nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease, text-shadow 0.3s ease;
            position: relative;
        }
        
        .main-nav a:hover {
            color: var(--primary-color);
            text-shadow: 0 0 5px rgba(247, 93, 89, 0.8);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: #fff;
            transition: all 0.3s ease;
        }

        main {
            padding-top: 80px;
        }

        section {
            padding: 80px 0;
            animation: fadeIn 1s ease-in-out;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/08.webp') no-repeat center center/cover;
            background-attachment: fixed;
            z-index: 1;
        }

        .hero-content {
            padding: 20px;
        }

        .hero h1 {
            font-size: 4em;
            margin-bottom: 0.5em;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            font-weight: 700;
        }

        .hero p {
            font-size: 1.5em;
            margin-bottom: 2em;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }

        .btn {
            background-color: var(--primary-color);
            color: #fff;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2em;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: inline-block;
        }

        .btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 15px rgba(0,0,0,0.2);
        }

        .about, .products, .prices, .gallery, .feedback, .faq {
            background-color: #fff;
            margin: 40px 0;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .about h2, .products h2, .prices h2, .gallery h2, .feedback h2, .faq h2 {
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 40px;
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .card {
            background-color: var(--background-color);
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }

        .card h3 {
            color: var(--primary-color);
        }

        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .price-card {
            background-color: var(--background-color);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            background-color: #f8f9fa;
        }

        .price-card.featured {
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            color: #fff;
            transform: scale(1.05);
            position: relative;
            z-index: 5;
        }

        .price-card.featured h3, .price-card.featured .price {
            color: #fff;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }

        .price-card h3 {
            font-size: 1.8em;
            margin-bottom: 10px;
        }
        
        .price-card .price {
            font-size: 3em;
            font-weight: bold;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .price-card .price small {
            font-size: 0.5em;
            font-weight: normal;
        }

        .price-card ul {
            list-style: none;
            padding: 0;
            text-align: left;
            margin-bottom: 20px;
        }

        .price-card li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
        }

        .price-card li:last-child {
            border-bottom: none;
        }

        .price-card li::before {
            content: '✓';
            color: var(--primary-color);
            margin-right: 10px;
            font-weight: bold;
        }

        .price-card.featured li::before {
            color: var(--accent-color);
        }

        .price-card .btn {
            background-color: var(--primary-color);
            color: #fff;
        }

        .price-card.featured .btn {
            background-color: var(--secondary-color);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .feedback-slider-container {
            position: relative;
            overflow: hidden;
            margin: 0 auto;
            max-width: 900px;
        }

        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            cursor: grab;
        }
        
        .feedback-card {
            min-width: 100%;
            box-sizing: border-box;
            background-color: var(--background-color);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            text-align: center;
            position: relative;
            margin: 0 15px;
        }

        .feedback-card::before {
            content: '“';
            font-size: 5em;
            position: absolute;
            top: 10px;
            left: 20px;
            color: var(--primary-color);
            opacity: 0.2;
            line-height: 1;
        }

        .feedback-card p {
            font-style: italic;
            margin-bottom: 15px;
        }

        .feedback-card .author {
            font-weight: bold;
            color: var(--secondary-color);
        }
        
        .slider-dots {
            text-align: center;
            margin-top: 20px;
        }

        .dot {
            height: 10px;
            width: 10px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.6s ease;
            cursor: pointer;
        }

        .dot.active {
            background-color: var(--primary-color);
        }

        .faq .faq-item {
            border-bottom: 1px solid #ddd;
            padding: 20px 0;
            cursor: pointer;
        }

        .faq .faq-item:last-child {
            border-bottom: none;
        }

        .faq .faq-question {
            font-weight: bold;
            color: var(--secondary-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.2em;
        }

        .faq .faq-question::after {
            content: '+';
            font-size: 1.5em;
            transition: transform 0.3s ease;
        }

        .faq .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            padding-top: 0;
        }

        .faq .faq-answer p {
            margin: 15px 0 0 0;
        }

        .faq .faq-answer.open {
            max-height: 200px;
            padding-top: 15px;
        }
        
        #contact {
            background-color: var(--secondary-color);
            color: #fff;
            padding: 60px 0;
            text-align: center;
        }

        #contact h2 {
            color: var(--primary-color);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-form input {
            padding: 15px;
            border: none;
            border-radius: 5px;
            font-size: 1em;
            background-color: rgba(255, 255, 255, 0.9);
            color: var(--text-color);
            transition: background-color 0.3s ease;
        }

        .contact-form input:focus {
            outline: none;
            background-color: #fff;
            box-shadow: 0 0 0 3px var(--primary-color);
        }

        .contact-form .btn {
            background-color: var(--primary-color);
            border: none;
            cursor: pointer;
        }
        
        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            background-color: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            z-index: 2000;
            text-align: center;
            opacity: 0;
            visibility: hidden;
            transition: transform 0.3s ease-in-out, opacity 0.3s ease, visibility 0.3s;
        }
        
        .popup.active {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
            visibility: visible;
        }

        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s;
        }
        
        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .disclaimer {
            background-color: var(--dark-color);
            color: #ccc;
            padding: 20px;
            text-align: center;
            font-size: 0.9em;
            border-top: 1px solid #333;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            color: #fff;
            padding: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            z-index: 1500;
            font-size: 0.9em;
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: underline;
        }

        .cookie-banner button {
            background-color: var(--primary-color);
            color: #fff;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }
        
        footer {
            background-color: var(--secondary-color);
            color: #fff;
            padding: 40px 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 20px;
        }

        .footer-nav a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--primary-color);
        }

        .contact-info {
            text-align: right;
            font-size: 0.9em;
        }

        .contact-info p {
            margin: 5px 0;
        }

        .contact-info p a {
            color: inherit;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 70%;
                height: 100%;
                background-color: var(--dark-color);
                padding-top: 80px;
                transition: left 0.5s ease;
            }

            .main-nav.active {
                left: 0;
            }

            .main-nav ul {
                flex-direction: column;
                align-items: flex-start;
                padding-left: 20px;
            }

            .main-nav li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .main-nav a {
                display: block;
                padding: 15px 0;
            }

            .burger-menu {
                display: flex;
            }

            .burger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
            .burger-menu.active span:nth-child(2) { opacity: 0; }
            .burger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

            .hero h1 {
                font-size: 2.5em;
            }

            .hero p {
                font-size: 1.2em;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 20px;
            }
            
            .contact-info, .footer-nav {
                text-align: center;
            }
        }

