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

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

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

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 1000;
    max-width: 40rem;
    margin: 0 auto;


}

.cookie-popup.hidden {
    display: none;
}

.cookie-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.cookie-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 12rem;
}

.btn-cookie.accept {
    background: #7c3aed;
    color: white;
}

.btn-cookie.accept:hover {
    background: #6d28d9;
}

.btn-cookie.reject {
    background: #9333ea;
    color: white;
}

.btn-cookie.reject:hover {
    background: #7c3aed;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(1rem);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
}

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

.nav-brand a {
    font-size: 2.4rem;
    font-weight: 700;
    color: #7c3aed;
    text-decoration: none;
}

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

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

.nav-menu a:hover {
    color: #7c3aed;
}

/* Hero Section */
.hero {
    background: url("./img/bg.png") no-repeat center center;
    background-size: cover;
    min-height: 70rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12rem 2rem 8rem;
}


.hero-content {
    max-width: 80rem;
    color: white;
}

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

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

.btn-primary {
    display: inline-block;

    color: white;
    padding: 1.5rem 3rem;

    text-decoration: none;
    font-weight: 600;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    border-radius: 20px;
background: #8742C3;
}

.btn-primary:hover {
    background: #6d28d9;
    transform: translateY(-0.2rem);
}

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

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

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

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

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

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
}

.about-text p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Why Choose Section */
.why-choose {
    padding: 8rem 0;
  background: #8742C3;
    color: white;
}

.why-choose h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.feature {
    flex: 1;
    min-width: 25rem;
    /*background: rgba(255, 255, 255, 0.1);*/

    /*border-radius: 1rem;*/
    text-align: left;
    border-radius: 20px;
    background: #FFF;
    display: flex;
    width: 333px;
    padding: 30px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}

.feature-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 3rem;
    height: 3rem;
}

.feature h3 {


    margin-bottom: 1.5rem;
    color: #000;

    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.feature p {


    opacity: 0.9;
    color: #000;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.mission-text {
    max-width: 100rem;
    margin: 0 auto;
}

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

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

.services h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
}

.services-intro {
    text-align: center;
    font-size: 1.6rem;
    color: #4b5563;
    max-width: 80rem;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

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

.service {

    min-width: 25rem;
    border-radius: 20px;
    background: #F0EBFF;


    text-align: left;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    display: flex;
    padding: 20px 19px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    flex: 1 0 0;
    align-self: stretch;
}

.service-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem;
    /*background: #7c3aed;*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 3rem;
    height: 3rem;
    filter: brightness(0) invert(1);
}

.service h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.service p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1f2937;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    flex-direction: column;
}

.testimonial {
    flex: 1;
    min-width: 25rem;

    color: white;


    border-radius: 20px;
    background: #6942C3;
    display: flex;
    padding: 16px 19px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    align-self: stretch;
}

.testimonial p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.testimonial cite {
    font-size: 1.4rem;
    font-weight: 600;
    font-style: normal;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: #f8fafc;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

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

.contact-form h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
    text-align: center;
}

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

.contact-form input,
.contact-form textarea {


    font-size: 1.6rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    border-radius: 10px;
    border: 1px solid #6942C3;
    display: flex;
    padding: 16px 32px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #7c3aed;
}

.contact-form textarea {
    resize: vertical;
    min-height: 12rem;
}

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

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

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

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

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 1.4rem;
    opacity: 0.8;
}

.feature-icon {

    height: 6rem;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.mission-section {
    margin-top: 4rem;
    /*background: rgba(255, 255, 255, 0.1);*/
    /*border-radius: 1rem;*/

    overflow: hidden;
    border-radius: 20px;
    background: #F0EBFF;
    display: flex;
    padding: 40px 20px;
    justify-content: center;
    align-items: center;
    gap: 30px;
    align-self: stretch;
}

.mission-content {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    min-height: 35rem;
}

.mission-text {
    flex: 1;
    min-width: 35rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-text p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.mission-text p:last-child {
    margin-bottom: 0;
}

.mission-image {
    flex: 1;
    min-width: 25rem;
    position: relative;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background: white;
    color: #333;
    padding: 3rem 0;
    border-top: 0.1rem solid #e5e7eb;
}

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

.footer-brand h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 0;
}

.footer-brand p {
    font-size: 1.4rem;
    color: #333;
    margin-top: 1rem;
}

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

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-social a {
    width: 4rem;
    height: 4rem;
    background: #7c3aed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.4rem;
}

.footer-social a:hover {
    background: #6d28d9;
}

.footer-social a.facebook::after {
    content: 'f';
}

.footer-social a.twitter::after {
    content: '𝕏';
}

.footer-social a.linkedin::after {
    content: 'in';
}

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

    .nav {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-menu {
        justify-content: center;
        gap: 2rem;
    }

    .hero {
        min-height: 60rem;
        padding: 10rem 2rem 6rem;
    }

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

    .hero-content p {
        font-size: 1.6rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .features {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .contact-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .cookie-popup {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

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

    .section-title {
        font-size: 2.4rem;
    }
}

.footer-social, .footer-brand p {

    margin-top: 20px;
}

.service-icon {
    /* width: 6rem; */
    height: 6rem;
    margin: 0 auto 2rem;
    /* background: #7c3aed; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .footer-social {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

}
.privacy__title{
    color: #000;

font-size: 34px;
font-style: normal;
font-weight: 600;
line-height: 130%; /* 44.2px */
}
