/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #6B21A8;
    color: white;
    padding: 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    min-width: 30rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background: #A3E635;
    color: #000;
}

.cookie-btn.accept:hover {
    background: #84CC16;
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 0.2rem solid white;
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    padding: 1.5rem 0;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: #6B21A8;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #6B21A8;
}

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

.nav-toggle span {
    width: 2.5rem;
    height: 0.3rem;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, #410064 0%, #741FB5 100%);
    color: white;
    padding: 12rem 0 8rem;
    margin-top: 8rem;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 30rem;
}

.hero-content h1 {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    min-width: 30rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Buttons */
.cta-btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
}

.cta-btn.primary {
    background: #A3E635;
    color: #000;
}

.cta-btn.primary:hover {
    background: #84CC16;
    transform: translateY(-0.2rem);
}

.cta-btn.secondary {
    background: transparent;
    color: #6B21A8;
    border: 0.2rem solid #6B21A8;
}

.cta-btn.secondary:hover {
    background: #6B21A8;
    color: white;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: #f8fafc;
}

.about h2 {
    text-align: center;
    font-size: 3.6rem;
    color: #6B21A8;
    margin-bottom: 1rem;
}

.about-subtitle {
    text-align: center;
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 6rem;
}

.about-content {
    display: flex;
    gap: 6rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 30rem;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.6rem;
    line-height: 1.7;
}

.work-principles {
    margin: 4rem 0;
}

.work-principles h3 {
    font-size: 2.4rem;
    color: #6B21A8;
    margin-bottom: 2rem;
}

.principle {
    margin-bottom: 2rem;
}

.principle h4 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.principle p {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 0;
}

.about-image {
    flex: 1;
    min-width: 30rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Services Section */
.services {
    padding: 8rem 0;
}

.services h2 {
    text-align: center;
    font-size: 3.6rem;
    color: #6B21A8;
    margin-bottom: 6rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 30rem;
    max-width: 35rem;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-0.5rem);
}

.service-icon {
    margin-bottom: 2rem;
}

.service-icon img {
    width: 8rem;
    height: 8rem;
    border-radius: 1rem;
    object-fit: cover;
}

.service-card h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.service-btn {
    background: #A3E635;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
}

.service-btn:hover {
    background: #84CC16;
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background: #f8fafc;
}

.faq h2 {
    text-align: center;
    font-size: 3.6rem;
    color: #6B21A8;
    margin-bottom: 6rem;
}

.faq-content {
    display: flex;
    gap: 6rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.faq-image {
    flex: 1;
    min-width: 30rem;
}

.faq-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.faq-list {
    flex: 1;
    min-width: 30rem;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.1rem solid #eee;
}

.faq-question h3 {
    font-size: 1.6rem;
    color: #333;
    font-weight: 600;
}

.faq-toggle {
    font-size: 2rem;
    color: #6B21A8;
    font-weight: 300;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 2rem 2rem;
    color: #666;
}

.faq-answer p {
    font-size: 1.4rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
  background: linear-gradient(180deg, #410064 0%, #741FB5 100%);
    color: white;
}

.contact-content {
    display: flex;
    gap: 6rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 30rem;
}

.contact-info h2 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-details p {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.contact-form {
    flex: 1;
    min-width: 30rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 0.2rem solid #A3E635;
}

.contact-image {
    margin-top: 4rem;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand .logo {
    color: white;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #A3E635;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 0.1rem solid #333;
}

.footer-bottom p {
    font-size: 1.2rem;
    color: #999;
}

/* Success Page */
.success-page {
    padding: 12rem 0 8rem;
    background: #f8fafc;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.success-content {
    text-align: center;
    max-width: 60rem;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.success-content h1 {
    font-size: 3.6rem;
    color: #6B21A8;
    margin-bottom: 2rem;
}

.success-content p {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 4rem;
    line-height: 1.7;
}

.success-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Styles */
@media (max-width: 768px) {
    html {
        font-size: 9px;
    }

    .container {
        padding: 0 1.5rem;
    }

    /* Navigation Mobile */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-0.5rem, 0.6rem);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-0.5rem, -0.6rem);
    }

    /* Hero Mobile */
    .hero {
        padding: 8rem 0 6rem;
        margin-top: 7rem;
    }

    .hero .container {
        flex-direction: column;
        gap: 4rem;
    }

    .hero-content h1 {
        font-size: 3.2rem;
        text-align: center;
    }

    .hero-content p {
        text-align: center;
    }

    /* About Mobile */
    .about-content {
        flex-direction: column;
        gap: 4rem;
    }

    /* Services Mobile */
    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 100%;
    }

    /* FAQ Mobile */
    .faq-content {
        flex-direction: column;
        gap: 4rem;
    }

    /* Contact Mobile */
    .contact-content {
        flex-direction: column;
        gap: 4rem;
    }

    .contact-info h2 {
        text-align: center;
    }

    /* Cookie Popup Mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cookie-content p {
        min-width: auto;
    }

    .cookie-buttons {
        justify-content: center;
    }

    /* Success Page Mobile */
    .success-actions {
        flex-direction: column;
        align-items: center;
    }

    .success-actions .cta-btn {
        width: 100%;
        max-width: 30rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 8px;
    }

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

    .services h2,
    .about h2,
    .faq h2,
    .contact h2 {
        font-size: 2.8rem;
    }

    .service-card {
        min-width: auto;
        padding: 2rem;
    }

    .faq-question h3 {
        font-size: 1.4rem;
    }

    .cookie-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1.2rem;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        justify-content: center;
    }

    .service-card {
        max-width: 45%;
    }
}