* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary: #1a237e;
            --secondary: #7c4dff;
            --accent: #ffd700;
            --light: #f5f5f5;
            --dark: #212121;
            --text: #333;
        }
        
        body {
            background-color: #f0f0f0;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(26, 35, 126, 0.95);
            color: white;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--accent);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: white;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 150px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/07.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .hero-text {
            width: 50%;
            animation: fadeInLeft 1s ease;
        }
        
        .hero-text h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--accent);
        }
        
        .hero-text p {
            font-size: 20px;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--accent);
            color: var(--primary);
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }
        
        .btn:hover {
            background-color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .hero-image {
            width: 45%;
            animation: fadeInRight 1s ease;
        }
        
        .hero-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        /* About Section */
        .about {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background-color: var(--accent);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .about-text {
            width: 48%;
        }
        
        .about-text h3 {
            font-size: 28px;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .about-image {
            width: 48%;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
        }
        
        .about-image img:hover {
            transform: scale(1.03);
        }
        
        /* Product Description */
        .product {
            padding: 80px 0;
            background-color: #f9f9f9;
        }
        
        .product-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .product-item {
            width: 30%;
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .product-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .product-item img {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
        }
        
        .product-item h3 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .product-item p {
            font-size: 16px;
            color: var(--text);
        }
        
        /* Advantages */
        .advantages {
            padding: 80px 0;
            background-color: white;
            position: relative;
            overflow: hidden;
        }
        
        .advantages::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(124, 77, 255, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
            z-index: 0;
        }
        
        .advantages-content {
            position: relative;
            z-index: 1;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .advantage-item {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
            border-left: 4px solid var(--secondary);
        }
        
        .advantage-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .advantage-item i {
            font-size: 40px;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .advantage-item h3 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .advantage-item p {
            font-size: 16px;
            color: var(--text);
        }
        
        /* Gallery */
        .gallery {
            padding: 80px 0;
            background-color: #f9f9f9;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(26, 35, 126, 0.1), rgba(26, 35, 126, 0.7));
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay h3 {
            color: white;
            font-size: 18px;
        }
        
        /* Pricing */
        .pricing {
            padding: 80px 0;
            background-color: white;
        }
        
        .pricing-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .pricing-card {
            width: 30%;
            background-color: #f9f9f9;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-card.featured {
            transform: scale(1.05);
            border: 2px solid var(--accent);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-header {
            background-color: var(--primary);
            color: white;
            padding: 20px;
        }
        
        .pricing-card.featured .pricing-header {
            background-color: var(--secondary);
        }
        
        .pricing-header h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .pricing-price {
            font-size: 36px;
            font-weight: bold;
            color: var(--accent);
        }
        
        .pricing-price span {
            font-size: 16px;
            font-weight: normal;
        }
        
        .pricing-body {
            padding: 30px 20px;
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            font-size: 16px;
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background-color: #f9f9f9;
        }
        
        .testimonials-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .testimonial-item {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            display: none;
        }
        
        .testimonial-item.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .testimonial-content {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.6;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        .testimonial-author h4 {
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .testimonial-author p {
            font-size: 14px;
            color: #777;
        }
        
        .testimonial-controls {
            text-align: center;
            margin-top: 20px;
        }
        
        .testimonial-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .testimonial-dot.active {
            background-color: var(--secondary);
        }
        
        /* How We Work */
        .how-we-work {
            padding: 80px 0;
            background-color: white;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            position: relative;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 50px;
            right: 50px;
            height: 2px;
            background-color: #eee;
            z-index: 0;
        }
        
        .process-step {
            width: 22%;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .step-number {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            font-weight: bold;
            margin: 0 auto 20px;
            position: relative;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .step-number::after {
            content: '';
            position: absolute;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 2px dashed var(--secondary);
            top: -10px;
            left: -10px;
            animation: rotate 20s linear infinite;
        }
        
        .process-step h3 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .process-step p {
            font-size: 16px;
            color: var(--text);
        }
        
        /* FAQ */
        .faq {
            padding: 80px 0;
            background-color: #f9f9f9;
        }
        
        .faq-items {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: white;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: white;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: #f5f5f5;
        }
        
        .faq-question h3 {
            font-size: 18px;
            color: var(--primary);
        }
        
        .faq-icon {
            font-size: 24px;
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 300px;
        }
        
        /* Contact Form */
        .contact {
            padding: 80px 0;
            background-color: white;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #f9f9f9;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--primary);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.2);
        }
        
        .form-submit {
            text-align: center;
            margin-top: 30px;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: var(--primary);
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        
        .disclaimer p {
            font-size: 14px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-column {
            width: 30%;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: #ccc;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 14px;
            color: #999;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            color: white;
            padding: 20px;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            width: 70%;
            font-size: 14px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background-color: var(--accent);
            color: var(--primary);
        }
        
        .cookie-accept:hover {
            background-color: white;
        }
        
        .cookie-decline {
            background-color: transparent;
            color: white;
            border: 1px solid white;
        }
        
        .cookie-decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Modal */
        .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.show {
            display: flex;
        }
        
        .modal-content {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            animation: modalFadeIn 0.3s ease;
        }
        
        .modal-content h3 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .modal-content p {
            font-size: 16px;
            margin-bottom: 30px;
        }
        
        .modal-close {
            background-color: var(--accent);
            color: var(--primary);
            border: none;
            padding: 10px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .modal-close:hover {
            background-color: white;
        }
        
        /* Marquee */
        .marquee {
            background-color: var(--primary);
            color: white;
            padding: 15px 0;
            overflow: hidden;
            position: relative;
        }
        
        .marquee-content {
            display: flex;
            animation: marquee 20s linear infinite;
        }
        
        .marquee-item {
            white-space: nowrap;
            padding: 0 30px;
            font-size: 18px;
            font-weight: bold;
        }
        
        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        @keyframes marquee {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-50%);
            }
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
            }
            
            .hero-text, .hero-image {
                width: 100%;
            }
            
            .hero-text {
                margin-bottom: 40px;
                text-align: center;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-text, .about-image {
                width: 100%;
            }
            
            .about-text {
                margin-bottom: 30px;
            }
            
            .product-item, .pricing-card {
                width: 48%;
            }
            
            .process-step {
                width: 48%;
                margin-bottom: 30px;
            }
            
            .process-steps::before {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--primary);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 50px;
                transition: all 0.3s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero-text h1 {
                font-size: 36px;
            }
            
            .product-item, .pricing-card {
                width: 100%;
            }
            
            .footer-column {
                width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .hero-text h1 {
                font-size: 28px;
            }
            
            .hero-text p {
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .cookie-text {
                width: 100%;
                margin-bottom: 15px;
            }
            
            .cookie-banner {
                flex-direction: column;
            }
        }

