.terms,
.cookie,
.return,
.disclaimer,
.refund,
.privacy {
  text-align: left;
  padding: 15rem 0;
}
/* Base Styles */
:root {
    --primary-color: #6233FF;
    --secondary-color: #9F83FF;
    --dark-color: #2B2349;
    --light-color: #F5F5FF;
    --text-color: #333333;
    --light-text: #666666;
    --white: #FFFFFF;
    --dark-bg: #181621;
}

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

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

body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul, ol {
    list-style: none;
}

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

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

section {
    padding: 6rem 0;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 2.4rem;
    border-radius: 5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-text {
    background: none;
    border: none;
    color: var(--light-text);
    font-weight: 500;
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s ease;
}

.btn-text:hover {
    color: var(--primary-color);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -0.5rem 2rem rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 2rem;
    display: none;
}

.cookie-popup.active {
    display: block;
}

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

.cookie-icon {
    width: 5rem;
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Header */
header {
    background-color: var(--white);
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.05);
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.8rem;
}

.logo img {
    height: 2.4rem;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    text-align: center;
    max-width: 64rem;
}

.hero h1 {
    margin-bottom: 2rem;
}

.subscription-form {
    display: flex;
    margin-top: 3rem;
    max-width: 40rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.subscription-form input {
    flex: 1;
    padding: 1.2rem 1.8rem;
    border: 0.1rem solid #ddd;
    border-radius: 5rem 0 0 5rem;
    font-size: 1.6rem;
}

.subscription-form button {
    border-radius: 0 5rem 5rem 0;
    padding: 0 2rem;
}

.hero-graphic {
    width: 100%;
    max-width: 60rem;
    display: flex;
    justify-content: center;
}

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

/* Stats Section */
.stats {
    padding: 4rem 0;
}

.community-text {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto 3rem;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    flex: 1;
    min-width: 25rem;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item p {
    font-size: 1.4rem;
}

/* Benefits Section */
.benefits {
    background-color: var(--light-color);
    padding: 6rem 0;
}

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

.benefit-card {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 30rem;
    max-width: 50rem;
}

.benefit-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    margin-top: 2rem;
}

/* Testimonial Section */
.testimonial {
    padding: 6rem 0;
}

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

.testimonial-image {
    flex: 1;
    min-width: 30rem;
    display: flex;
    justify-content: center;
}

.freedom-image {
    max-width: 30rem;
}

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

.testimonial-text h2 {
    text-align: left;
}

/* Features Section */
.features {
    background-color: var(--dark-bg);
    padding: 6rem 0;
    color: var(--white);
}

.features h2 {
    color: var(--white);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2.5rem;
    flex: 1;
    min-width: 25rem;
    max-width: 35rem;
}

.feature-icon {
    background-color: rgba(255, 255, 255, 0.1);
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--white);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.cta {
    background-color: var(--light-color);
    text-align: center;
    padding: 8rem 0;
}

.cta .container {
    max-width: 70rem;
}

.cta .btn-primary {
    margin-top: 2rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact h2 {
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}

.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-grid input,
.form-grid textarea {
    flex: 1;
    min-width: 30rem;
    padding: 1.2rem 1.8rem;
    border: 0.1rem solid #ddd;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-family: 'Noto Sans', sans-serif;
}

.form-grid textarea {
    min-height: 15rem;
    width: 100%;
}

.contact form {
    max-width: 80rem;
    margin: 0 auto;
}

.contact button {
    display: block;
    margin: 3rem auto 0;
    min-width: 20rem;
}

/* Footer */
footer {
    background-color: var(--light-color);
    padding: 2rem 0;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

.footer-links a {
    color: var(--light-text);
}

.footer-links a:hover {
    color: var(--primary-color);
}

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

.success-page h1 {
    margin-bottom: 3rem;
}

/* Media Queries */
@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3.2rem;
    }

    .hero .container {
        flex-direction: row;
    }

    .hero-content {
        text-align: left;
    }

    .subscription-form {
        margin-left: 0;
    }

    .testimonial-text h2 {
        text-align: left;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 5rem;
    }

    section {
        padding: 8rem 0;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}