.terms,
.cookie,
.return,
.disclaimer,
.refund,
.privacy {
  text-align: left;
  padding: 15rem 0;
}
/* Base Styles */
html {
    font-size: 10px;
    scroll-behavior: smooth;
}

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

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

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

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

ul, ol {
    list-style: none;
    padding: 0;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 3rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.6rem;
}

.btn-primary {
    background-color: #2e8b78;
    color: white;
}

.btn-primary:hover {
    background-color: #247a68;
}

.btn-secondary {
    background-color: transparent;
    color: #333;
    border: 1px solid #ccc;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -0.2rem 1rem rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 2rem;
    display: none;
}

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

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

.cookie-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
    color: #333;
}

.cookie-content p {
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

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

/* Header */
header {
    background-color: #000;
    color: white;
    padding: 2rem 0;
}

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

.logo {
    font-size: 2.4rem;
    font-weight: 700;
}

.nav-links {
    display: none;
}

.nav-links a {
    margin-left: 2rem;
    font-size: 1.6rem;
}

/* Hero Section */
.hero {
    background: url('./img/main.jpg') center/cover no-repeat; 
    background-color: #000;
    color: white;
    padding: 5rem 0;
    position: relative;
}

.hero:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 70rem;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero p {
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

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

.service-card {
    flex: 1 1 100%;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.service-icon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.4rem;
    color: #666;
}

/* Steps Section */
.steps {
    padding: 5rem 0;
    background-color: #2e8b78;
    color: white;
}

.steps h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

.step h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.step p {
    font-size: 1.4rem;
    opacity: 0.9;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.pricing-plans {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    flex: 1 1 100%;
    padding: 2rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.price {
    margin-bottom: 2rem;
}

.price-amount {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: #2e8b78;
    margin-bottom: 1rem;
}

.price span {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
}

.price ul {
    padding-left: 2rem;
}

.price ul li {
    margin-bottom: 1rem;
    position: relative;
    list-style-type: disc;
}

/* Values Section */
.values {
    padding: 5rem 0;
    background-color: #fff;
}

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

.values p {
    margin-bottom: 3rem;
}

.values-list li {
    margin-bottom: 2rem;
    padding-left: 2rem;
    position: relative;
}

.values-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2e8b78;
}

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

.contact h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
}

form {
    max-width: 60rem;
    margin: 0 auto;
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
}

form button {
    width: 100%;
    padding: 1.2rem;
}

/* Success Message */
.success-message {
    padding: 8rem 0;
    text-align: center;
}

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

.success-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.success-content p {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.success-content .btn {
    margin-top: 3rem;
}

/* Footer */
footer {
    background-color: #000;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    font-size: 2.4rem;
    font-weight: 700;
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #2e8b78;
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #247a68;
}

/* Media Queries */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }

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

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

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

    .pricing-card {
        flex: 1 1 calc(50% - 2rem);
    }
}

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

    .service-card {
        flex: 1 1 calc(33.333% - 2rem);
    }

    .steps-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step {
        flex: 1 1 calc(50% - 2rem);
    }

    .pricing-card {
        flex: 1 1 calc(33.333% - 2rem);
    }
}

textarea{
  resize: vertical;
}