:root {
            --primary: #FF5E5B;
            --secondary: #00CECB;
            --dark: #2D3047;
            --light: #FFED66;
            --accent: #5E2BFF;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            padding-top: 80px;
        }
        header {
            background-color: var(--dark);
            color: white;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--light);
        }
        .logo span {
            color: var(--primary);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 1.5rem;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        nav ul li a:hover {
            color: var(--light);
        }
        .burger {
            display: none;
            cursor: pointer;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px;
            transition: all 0.3s ease;
        }
        section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .hero {
            background: linear-gradient(rgba(45, 48, 71, 0.8), rgba(45, 48, 71, 0.8)), url('../img/10.webp') no-repeat center center/cover;
            height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            color: white;
            text-align: left;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            animation: fadeIn 1s ease-in;
        }
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            animation: fadeIn 1.5s ease-in;
        }
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            cursor: pointer;
            animation: fadeIn 2s ease-in;
        }
        .btn:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .about {
            background-color: white;
            text-align: center;
        }
        .about h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 2rem;
            position: relative;
        }
        .about h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--primary);
        }
        .about-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 3rem;
        }
        .about-text {
            flex: 1;
            min-width: 300px;
            padding: 1rem;
            text-align: left;
        }
        .about-img {
            flex: 1;
            min-width: 300px;
            padding: 1rem;
        }
        .about-img img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .about-img img:hover {
            transform: scale(1.03);
        }
        .products {
            background-color: #f1f3f5;
        }
        .products h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
        }
        .products h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--primary);
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .product-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .product-img {
            height: 200px;
            overflow: hidden;
        }
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .product-card:hover .product-img img {
            transform: scale(1.1);
        }
        .product-info {
            padding: 1.5rem;
        }
        .product-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        .product-info p {
            margin-bottom: 1rem;
            color: #666;
        }
        .prices {
            background-color: white;
            text-align: center;
        }
        .prices h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 2rem;
            position: relative;
        }
        .prices h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--primary);
        }
        .price-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 3rem;
        }
        .price-card {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 2rem;
            width: 300px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .price-card.popular {
            border: 2px solid var(--primary);
        }
        .popular-tag {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--primary);
            color: white;
            padding: 0.3rem 1rem;
            font-size: 0.8rem;
            font-weight: bold;
            border-bottom-left-radius: 10px;
        }
        .price-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        .price span {
            font-size: 1rem;
            color: #666;
        }
        .price-features {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }
        .price-features li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }
        .price-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        .gallery {
            background-color: #f1f3f5;
            text-align: center;
        }
        .gallery h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 2rem;
            position: relative;
        }
        .gallery h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--primary);
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 3rem;
        }
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .feedback {
            background-color: white;
            text-align: center;
        }
        .feedback h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 2rem;
            position: relative;
        }
        .feedback h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--primary);
        }
        .testimonials {
            max-width: 800px;
            margin: 3rem auto 0;
            position: relative;
        }
        .testimonial {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 1rem;
            opacity: 0;
            transition: opacity 0.5s ease;
            position: absolute;
            width: 100%;
            top: 0;
            left: 0;
        }
        .testimonial.active {
            opacity: 1;
            position: relative;
        }
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
        }
        .testimonial-author {
            font-weight: bold;
            color: var(--dark);
        }
        .testimonial-role {
            color: #666;
            font-size: 0.9rem;
        }
        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }
        .testimonial-dot {
            width: 12px;
            height: 12px;
            background-color: #ccc;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .testimonial-dot.active {
            background-color: var(--primary);
        }
        .faq {
            background-color: #f1f3f5;
        }
        .faq h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
        }
        .faq h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--primary);
        }
        .faq-container {
            max-width: 800px;
            margin: 3rem auto 0;
        }
        .faq-item {
            background-color: white;
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .faq-question {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: bold;
            color: var(--dark);
            transition: background-color 0.3s;
        }
        .faq-question:hover {
            background-color: #f8f9fa;
        }
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary);
        }
        .faq-question.active::after {
            content: '-';
        }
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        .faq-answer.show {
            padding: 0 1.5rem 1.5rem;
            max-height: 500px;
        }
        .contact-form {
            background-color: white;
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            max-width: 600px;
            margin: 3rem auto 0;
        }
        .contact-form h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--dark);
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        .form-group textarea {
            height: 120px;
            resize: vertical;
        }
        .submit-btn {
            width: 100%;
            padding: 1rem;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: var(--accent);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 2rem 1rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--light);
            margin-bottom: 1rem;
        }
        .footer-logo span {
            color: var(--primary);
        }
        .footer-about p {
            margin-bottom: 1rem;
        }
        .footer-links h3, .footer-contact h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--light);
            position: relative;
        }
        .footer-links h3::after, .footer-contact h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary);
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--light);
        }
        .footer-contact p {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }
        .footer-contact i {
            margin-right: 0.5rem;
            color: var(--primary);
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        .disclaimer {
            background-color: #f8f9fa;
            padding: 1rem;
            font-size: 0.8rem;
            color: #666;
            text-align: center;
            border-top: 1px solid #ddd;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--dark);
            color: white;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            z-index: 1000;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        .cookie-banner.show {
            transform: translateY(0);
        }
        .cookie-text {
            flex: 1;
            min-width: 250px;
            margin-bottom: 1rem;
        }
        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }
        .cookie-btn {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }
        .cookie-accept {
            background-color: var(--primary);
            color: white;
        }
        .cookie-decline {
            background-color: transparent;
            color: white;
            border: 1px solid white;
        }
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            animation: modalFadeIn 0.3s;
        }
        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 1rem;
            }
            nav {
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                padding: 1rem;
                clip-path: circle(0px at 90% -10%);
                transition: clip-path 0.5s ease;
            }
            nav.active {
                clip-path: circle(1000px at 90% -10%);
            }
            nav ul {
                flex-direction: column;
            }
            nav ul li {
                margin: 1rem 0;
                text-align: center;
            }
            .burger {
                display: block;
            }
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .about-content, .price-cards {
                flex-direction: column;
            }
            .about-text, .about-img {
                min-width: 100%;
            }
            section {
                padding: 3rem 1rem;
            }
            .contact-form {
                padding: 2rem 1rem;
            }
        }

