/* Reset and Base Styles */
html {
    font-size: 10px;
}

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

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #6E7DC5;
    color: #fff;
    padding: 1.2rem 2.4rem;
    border-radius: 0.8rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.6rem;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #6E7DC5;
    padding: 1.2rem 2.4rem;
    border-radius: 0.8rem;
    font-weight: 500;
    border: 0.2rem solid #6E7DC5;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.6rem;
}

.btn-secondary:hover {
    background: #6E7DC5;
    color: #fff;
    transform: translateY(-0.2rem);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.cookie-content p {
    font-size: 1.4rem;
    margin: 0;
}

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

.cookie-btn {
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #28a745;
    color: #fff;
}

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

.cookie-btn.decline {
    background: transparent;
    color: #fff;
    border: 0.1rem solid #fff;
}

.cookie-btn.decline:hover {
    background: #fff;
    color: #333;
}

/* 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: 999;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    min-height: 7rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 4rem;
    height: 4rem;
}

.brand-name {
    font-size: 2rem;
    font-weight: 600;
    color: #6E7DC5;
}

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

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #6E7DC5;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 2.5rem;
    height: 0.3rem;
    background: #333;
    border-radius: 0.2rem;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
@media (max-width: 1023px) {
    .nav-menu {
        position: fixed;
        top: 7rem;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        text-align: center;
    }

    .nav-menu a {
        font-size: 1.8rem;
        padding: 1rem;
        display: block;
    }
}

/* Header scrolled state */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(1rem);
}

/* Hero Section */
.hero {
    padding: 12rem 2rem 6rem;
    background: url("img/main.png");
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4rem;
}

.hero-content {
    max-width: 100%;
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(110, 125, 197, 0.40) 0%, rgba(136, 197, 110, 0.40) 100%);
    backdrop-filter: blur(8px);

    width: 992px;
    padding: 32px 24px;
    align-items: flex-start;
}

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

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

.hero-image {
    max-width: 50rem;
    width: 100%;
}

.hero-image img {
    border-radius: 1.2rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}

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

.about h2 {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.about > .container > p {
    font-size: 1.8rem;
    text-align: center;
    color: #666;
    margin-bottom: 6rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: 1.2rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-0.5rem);
}

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

.stat-icon img {
    width: 6rem;
    height: 6rem;
}

.stat-number {
    font-size: 3.6rem;
    font-weight: 700;
    color: #6E7DC5;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.stat-item p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.5;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: #6c5ce7;
    color: #fff;
}

.services h2 {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.services > .container > p {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 6rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

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

.service-card {
    background: #fff;
    color: #333;
    border-radius: 1.2rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 20rem;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin: 2rem 2rem 1rem;
    color: #333;
}

.service-card p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #666;
    margin: 0 2rem 2rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: #fff;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.cta-section > .container > p {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 6rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1rem);
    border-radius: 1.2rem;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

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

.feature-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.feature-card p {
    font-size: 1.6rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.testimonials h2 {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 6rem;
    color: #333;
}

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

.testimonial-card {
    background: #f8f9fa;
    border-radius: 1.2rem;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    transition: transform 0.3s ease;
}

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

.testimonial-avatar {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author strong {
    font-size: 1.6rem;
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    font-size: 1.4rem;
    color: #666;
}

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

.faq h2 {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 6rem;
    color: #333;
}

.faq-list {
    max-width: 80rem;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    padding: 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.6rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

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

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

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

.faq-item.active .faq-answer {
    max-height: 20rem;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: #fff;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.8rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1rem);
    border-radius: 1.2rem;
    padding: 3rem 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 0.3rem rgba(255, 255, 255, 0.3);
}

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

/* Success Section */
.success-section {
    padding: 12rem 2rem 8rem;
    background: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.success-icon {
    margin-bottom: 3rem;
}

.success-content h1 {
    font-size: 3.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

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

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 4rem;
    height: 4rem;
}

.footer-logo span {
    font-size: 2rem;
    font-weight: 600;
    color: #6E7DC5;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column a {
    font-size: 1.5rem;
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #6E7DC5;
}

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

.footer-bottom p {
    font-size: 1.4rem;
    color: #ccc;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .hero {
        padding: 12rem 3rem 8rem;
        flex-direction: row;
        text-align: left;
        align-items: center;
        justify-content: space-between;
    }

    .hero-content {
        flex: 1;
        max-width: 50rem;
    }

    .hero-image {
        flex: 1;
        max-width: 45rem;
    }

    .stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .stat-item {
        flex: 1;
        min-width: 30rem;
    }

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

    .service-card {
        flex: 1;
        min-width: 30rem;
    }

    .features-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .feature-card {
        flex: 1;
        min-width: 30rem;
    }

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

    .testimonial-card {
        flex: 1;
        min-width: 30rem;
    }

    .contact-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-info {
        flex: 1;
    }

    .contact-form {
        flex: 1;
        max-width: 50rem;
    }

    .success-actions {
        flex-direction: row;
        justify-content: center;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: row;
        gap: 6rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

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

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

    .stats {
        flex-wrap: nowrap;
    }

    .services-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        min-width: auto;
    }

    .features-grid {
        flex-wrap: nowrap;
    }

    .feature-card {
        min-width: auto;
    }

    .testimonials-grid {
        flex-wrap: nowrap;
    }

    .testimonial-card {
        min-width: auto;
    }
}

/* Animation styles */
.stat-item,
.service-card,
.feature-card,
.testimonial-card {
    opacity: 0;
    transform: translateY(3rem);
    transition: all 0.6s ease;
}

.stat-item.animate,
.service-card.animate,
.feature-card.animate,
.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Form error states */
.form-group input.error,
.form-group textarea.error {
    border: 0.2rem solid #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    box-shadow: 0 0 0 0.3rem rgba(231, 76, 60, 0.3);
}

/* Form error states */
.form-group input.error,
.form-group textarea.error {
    border: 0.2rem solid #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    box-shadow: 0 0 0 0.3rem rgba(231, 76, 60, 0.3);
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .container {
        padding: 0 4rem;
    }

    .nav {
        padding: 1rem 4rem;
    }

    .hero {
        padding: 12rem 4rem 10rem;
    }
}

/* Reset and Base Styles */
html {
    font-size: 10px;
}

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

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #6E7DC5;
    color: #fff;
    padding: 1.2rem 2.4rem;
    border-radius: 0.8rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.6rem;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #6E7DC5;
    padding: 1.2rem 2.4rem;
    border-radius: 0.8rem;
    font-weight: 500;
    border: 0.2rem solid #6E7DC5;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.6rem;
}

.btn-secondary:hover {
    background: #6E7DC5;
    color: #fff;
    transform: translateY(-0.2rem);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.cookie-content p {
    font-size: 1.4rem;
    margin: 0;
}

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

.cookie-btn {
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #28a745;
    color: #fff;
}

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

.cookie-btn.decline {
    background: transparent;
    color: #fff;
    border: 0.1rem solid #fff;
}

.cookie-btn.decline:hover {
    background: #fff;
    color: #333;
}

/* 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: 999;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    min-height: 7rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 4rem;
    height: 4rem;
}

.brand-name {
    font-size: 2rem;
    font-weight: 600;
    color: #6E7DC5;
}

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

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #6E7DC5;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 2.5rem;
    height: 0.3rem;
    background: #333;
    border-radius: 0.2rem;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
@media (max-width: 1023px) {
    .nav-menu {
        position: fixed;
        top: 7rem;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        text-align: center;
    }

    .nav-menu a {
        font-size: 1.8rem;
        padding: 1rem;
        display: block;
    }
}

/* Header scrolled state */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(1rem);
}

/* Hero Section */
.hero {
    padding: 12rem 2rem 6rem;
    background: url("img/main.png");
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4rem;
}

.hero-content {
    max-width: 100%;
}

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

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

.hero-image {
    max-width: 50rem;
    width: 100%;
}

.hero-image img {
    border-radius: 1.2rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}

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

.about h2 {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.about > .container > p {
    font-size: 1.8rem;
    text-align: center;
    color: #666;
    margin-bottom: 6rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: 1.2rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-0.5rem);
}

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

.stat-icon img {
    width: 6rem;
    height: 6rem;
}

.stat-number {
    font-size: 3.6rem;
    font-weight: 700;
    color: #6E7DC5;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.stat-item p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.5;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: #6c5ce7;
    color: #fff;
}

.services h2 {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.services > .container > p {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 6rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

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

.service-card {
    background: #fff;
    color: #333;
    border-radius: 1.2rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 20rem;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin: 2rem 2rem 1rem;
    color: #333;
}

.service-card p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #666;
    margin: 0 2rem 2rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    border-radius: 12px;
    background: #88C56E;
    /*background: linear-gradient(0deg, rgba(136, 197, 110, 0.40) 0%, rgba(136, 197, 110, 0.40) 100%);*/
    color: #fff;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.cta-section > .container > p {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 6rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1rem);
    border-radius: 1.2rem;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

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

.feature-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.feature-card p {
    font-size: 1.6rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.testimonials h2 {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 6rem;
    color: #333;
}

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

.testimonial-card {
    background: #f8f9fa;
    border-radius: 1.2rem;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    transition: transform 0.3s ease;
}

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

.testimonial-avatar {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #faf9f9;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author strong {
    font-size: 1.6rem;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    font-size: 1.4rem;
    color: #ffffff;
}

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

.faq h2 {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 6rem;
    color: #333;
}

.faq-list {
    max-width: 80rem;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    padding: 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.6rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

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

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

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

.faq-item.active .faq-answer {
    max-height: 20rem;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 100%), url(img/main3.png) lightgray 50% / cover no-repeat;
    color: #fff;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.8rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1rem);
    border-radius: 1.2rem;
    padding: 3rem 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 0.3rem rgba(255, 255, 255, 0.3);
}

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

/* Success Section */
.success-section {
    padding: 12rem 2rem 8rem;
    background: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.success-icon {
    margin-bottom: 3rem;
}

.success-content h1 {
    font-size: 3.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

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

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

/* Footer */
.footer {
  background: #131520;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 4rem;
    height: 4rem;
}

.footer-logo span {
    font-size: 2rem;
    font-weight: 600;
    color: #6E7DC5;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column a {
    font-size: 1.5rem;
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #6E7DC5;
}

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

.footer-bottom p {
    font-size: 1.4rem;
    color: #ccc;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .hero {
        padding: 12rem 3rem 8rem;
        flex-direction: row;
        text-align: left;
        align-items: center;
        justify-content: space-between;
    }

    .hero-content {
        flex: 1;
        max-width: 100%;
    }

    .hero-image {
        flex: 1;
        max-width: 45rem;
    }

    .stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .stat-item {
        flex: 1;
        min-width: 30rem;
    }

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

    .service-card {
        flex: 1;
        min-width: 30rem;
    }

    .features-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .feature-card {
        flex: 1;
        min-width: 30rem;
    }

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

    .testimonial-card {
        flex: 1;
        min-width: 30rem;
    }

    .contact-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-info {
        flex: 1;
    }

    .contact-form {
        flex: 1;
        max-width: 50rem;
    }

    .success-actions {
        flex-direction: row;
        justify-content: center;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: row;
        gap: 6rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

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

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

    .stats {
        flex-wrap: nowrap;
    }

    .services-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        min-width: auto;
    }

    .features-grid {
        flex-wrap: nowrap;
    }

    .feature-card {
        min-width: auto;
    }

    .testimonials-grid {
        flex-wrap: nowrap;
    }

    .testimonial-card {
        min-width: auto;
    }
}

/* Animation styles */
.stat-item,
.service-card,
.feature-card,
.testimonial-card {
    opacity: 0;
    transform: translateY(3rem);
    transition: all 0.6s ease;
}

.stat-item.animate,
.service-card.animate,
.feature-card.animate,
.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Form error states */
.form-group input.error,
.form-group textarea.error {
    border: 0.2rem solid #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    box-shadow: 0 0 0 0.3rem rgba(231, 76, 60, 0.3);
}

.container1 {
    /*background: url("./img/main2.png");*/
    border-radius: 12px;
    background: linear-gradient(0deg, rgba(136, 197, 110, 0.40) 0%, rgba(136, 197, 110, 0.40) 100%), url(img/main2.png) lightgray 50% / cover no-repeat;
    padding: 60px 20px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    justify-content: center !important;
    align-items: center;
}
.mobile-menu-toggle{
display: none;
}
@media (max-width: 768px) {
    .nav-menu, .nav.btn-primary{
        display: none;
    }

}