.terms,
.cookie,
.return,
.disclaimer,
.refund,
.privacy {
  text-align: left;
  padding: 15rem 0;
}
/* Base Styles */
:root {
    --primary-color: #6c63ff;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --grey: #e9ecef;
    --dark-grey: #6c757d;
}

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

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

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

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

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

ul {
    list-style: none;
}

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

h1, h2, h3 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.4rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1.5rem;
}

section {
    padding: 4rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.4rem;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-purple {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-purple:hover {
    opacity: 0.9;
}

.btn-white {
    background-color: var(--white);
    color: var(--text-color);
}

.btn-white:hover {
    background-color: var(--grey);
}

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

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

.cookie-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.4rem;
    max-width: 50rem;
    width: 90%;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-buttons button {
    flex: 1;
}

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

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

.logo a {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    gap: 2rem;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 70rem;
    margin: 0 auto;
}

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

/* About Section */
.about {
    background-color: var(--white);
}

/* Services Section */
.services {
    background-color: var(--light-bg);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.4rem;
    box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
    flex: 1 1 30rem;
}

.service-card h3 {
    color: var(--primary-color);
}

.price {
    font-weight: bold;
    margin-bottom: 1rem;
}

/* How to Start Section */
.how-to-start {
    background-color: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.how-to-start .container {
    position: relative;
    z-index: 2;
}

.how-to-start ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.how-to-start li {
    margin-bottom: 1rem;
}

.image-container {
    margin-top: 2rem;
    text-align: center;
}

.image-container img {
    max-width: 100%;
    border-radius: 0.4rem;
}

/* Benefits Section */
.benefits {
    background-color: var(--white);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    flex: 1 1 20rem;
    text-align: center;
    padding: 2rem;
}

.benefit-item img {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    background-color: var(--light-bg);
}

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

.form-column, .info-column {
    flex: 1 1 40rem;
}

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

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 0.1rem solid var(--grey);
    border-radius: 0.4rem;
    font-size: 1.6rem;
}

.map-container {
    margin-top: 2rem;
    border-radius: 0.4rem;
    overflow: hidden;
}

/* Success Page */
.success-message {
    text-align: center;
    padding: 8rem 0;
    background-color: var(--white);
}

.success-message h1 {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.success-message .btn {
    margin-top: 2rem;
}

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

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

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

    .header-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-cards, .benefits-grid {
        flex-direction: column;
    }

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

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

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

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

    h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 3rem 0;
    }
}