.terms,
.cookie,
.return,
.disclaimer,
.refund,
.privacy {
  text-align: left;
  padding: 15rem 0;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border: none;
    border-radius: 0.4rem;
    text-decoration: none;
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

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

.btn-full {
    width: 100%;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
}

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

.cookie-content {
    background-color: #fff;
    padding: 3rem;
    border-radius: 0.8rem;
    max-width: 50rem;
    width: 100%;
    text-align: center;
}

.cookie-content h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.cookie-content p {
    margin-bottom: 3rem;
    line-height: 1.6;
    color: #666;
}

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

.cookie-buttons .btn {
    flex: 1;
    min-width: 12rem;
}

/* Header */
.header {
    background-color: #5a9f7a;
    color: #fff;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

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

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav a:hover {
    opacity: 0.8;
}

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

.mobile-menu-toggle span {
    width: 2.5rem;
    height: 0.3rem;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

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

.hero h1 {
    font-size: 3.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.2;
}

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

/* Why Partner Section */
.why-partner {
    padding: 8rem 0;
    background-color: #fff;
}

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

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

.why-partner-image img {
    width: 100%;
    height: auto;
    border-radius: 0.8rem;
}

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

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

.why-partner-text p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 5rem;
    color: #333;
}

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

.service-card {
    flex: 1;
    min-width: 30rem;
    background-color: #fff;
    padding: 3rem;
    border-radius: 0.8rem;
    box-shadow: 0 0.4rem 0.6rem rgba(0, 0, 0, 0.1);
}

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

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Credentials Section */
.credentials {
    padding: 8rem 0;
    background-color: #fff;
}

.credentials-intro {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 5rem;
    font-size: 1.8rem;
    color: #666;
    line-height: 1.6;
}

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

.stat-item {
    flex: 1;
    min-width: 25rem;
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 0.8rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #5a9f7a;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.4rem;
    color: #666;
}

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

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

.faq-item {
    background-color: #fff;
    margin-bottom: 1rem;
    border-radius: 0.8rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    cursor: pointer;
    background-color: #e8f5e8;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #daf0da;
}

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

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

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

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

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

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

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

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

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

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

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

.contact-form-wrapper h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 1.5rem;
    border: 0.1rem solid #ddd;
    border-radius: 0.4rem;
    font-family: inherit;
    font-size: 1.6rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a9f7a;
}

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

/* Footer */
.footer {
    background-color: #5a9f7a;
    color: #fff;
    padding: 4rem 0;
}

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

.footer-left {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-0.2rem);
}

.social-links img {
    width: 2rem;
    height: 2rem;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

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

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

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

.footer-copyright {
    font-size: 1.3rem;
    opacity: 0.8;
}

/* Success Page */
.success-main {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.success-section {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

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

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

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

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

    .container {
        padding: 0 1.5rem;
    }

    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #5a9f7a;
        padding: 2rem;
        gap: 1rem;
    }

    .nav.active {
        display: flex;
    }

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

    .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);
    }

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

    .why-partner-content {
        flex-direction: column;
        gap: 4rem;
    }

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

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

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

    .stat-item {
        min-width: auto;
    }

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

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

    .footer-right {
        align-items: center;
    }

    .footer-links {
        justify-content: center;
    }

    .cookie-content {
        padding: 2rem;
    }

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

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

    .hero {
        padding: 6rem 0;
    }

    .why-partner,
    .services,
    .credentials,
    .faq,
    .contact {
        padding: 6rem 0;
    }

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

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

    .success-content h1 {
        font-size: 2.6rem;
    }
}