* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    color: white;
}

.cookie-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cookie-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cookie-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.cookie-btn.accept {
    background: #4C1D95;
    color: white;
}

.cookie-btn.reject {
    background: #7C3AED;
    color: white;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #8B5CF6;
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand a {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2C1256, #4C1D95, #7C3AED, #8B5CF6);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><path d="M800,0 Q1000,200 1200,0 L1200,300 Q1000,500 800,300 Q600,100 400,300 Q200,500 0,300 L0,0 Z" fill="rgba(255,255,255,0.03)"/><path d="M1200,400 Q1000,600 800,400 Q600,200 400,400 Q200,600 0,400 L0,800 L1200,800 Z" fill="rgba(255,255,255,0.02)"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-button {
    background: white;
    color: #8B5CF6;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-card.reverse .service-image {
    order: 2;
}

.service-card.reverse .service-content {
    order: 1;
}

.service-image {
    border-radius: 20px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 40px;
    border: 3px solid #8B5CF6;
    border-radius: 20px;
    background: white;
    position: relative;
}

.service-content h2 {
    color: #8B5CF6;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
}

.service-content p {
    margin-bottom: 18px;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.service-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-content li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: white;
}

.advantages h2 {
    text-align: center;
    color: #8B5CF6;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 80px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.advantage-card {
    text-align: left;
    padding: 0;
}

.advantage-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
}

.advantage-card h3 {
    color: #8B5CF6;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.4;
}

.advantage-card p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    color: #8B5CF6;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 80px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #8B5CF6;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 30px 35px;
    background: #8B5CF6;
    color: white;
    border: none;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    line-height: 1.4;
}

.faq-question:hover {
    background: #7C3AED;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    margin-left: 20px;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #8B5CF6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 35px 30px 35px;
    color: white;
    line-height: 1.7;
    font-size: 1rem;
    opacity: 0.95;
}

/* Contact Form */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #2C1256, #4C1D95, #7C3AED, #8B5CF6);
    position: relative;
    overflow: hidden;
}

.contact-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,600 Q300,400 600,500 Q900,600 1200,400 L1200,600 Z" fill="rgba(255,255,255,0.05)"/><path d="M0,0 Q300,200 600,100 Q900,0 1200,200 L1200,0 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.form-row input {
    width: 100%;
    padding: 20px 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-row input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.form-row input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    background: white;
    color: #2C1256;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    padding: 50px 0;
    background: #1a0b3d;
    color: white;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .service-card {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #8B5CF6;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .service-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-card.reverse .service-image {
        order: 1;
    }

    .service-card.reverse .service-content {
        order: 2;
    }

    .service-content {
        padding: 30px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .advantages h2,
    .faq h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 25px 30px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 30px 25px 30px;
    }

    .cookie-content {
        margin: 10px;
        padding: 30px 20px;
    }

    .cookie-content h3 {
        font-size: 1.5rem;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-btn {
        min-width: auto;
    }

    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .contact-form {
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .service-content {
        padding: 25px 20px;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .advantage-card h3 {
        font-size: 1.2rem;
    }

    .advantage-card p {
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 20px 25px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 25px 20px 25px;
        font-size: 0.95rem;
    }

    .advantages h2,
    .faq h2 {
        font-size: 1.8rem;
        margin-bottom: 60px;
    }

    .contact-form {
        max-width: 400px;
    }

    .form-row input {
        padding: 18px 22px;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 18px 40px;
        font-size: 1rem;
    }

    .nav-brand a {
        font-size: 1.3rem;
    }

    .cta-button {
        padding: 16px 35px;
        font-size: 1rem;
    }
}