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

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

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

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

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.4rem;
}

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

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

p {
    margin-bottom: 1.5rem;
}

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

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

.btn-primary:hover {
    background-color: #1642c2;
}

.btn-secondary {
    background-color: #fff;
    color: #333;
    border: 0.1rem solid #ccc;
}

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

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

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

.logo a {
    color: #1a4cd8;
    font-size: 2.4rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-links {
    display: none;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a4cd8;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-text {
    margin-bottom: 3rem;
}

.hero-image img {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.features-content {
    display: flex;
    flex-direction: column;
}

.features-image img {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

/* Services Section */
.services {
    padding: 4rem 0;
}

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

.service-card {
    flex: 1 1 100%;
    background-color: #1a4cd8;
    color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.service-icon {
    margin-right: 1.5rem;
    border-radius: 0.5rem;
    width: 5rem;
    flex: 0 0 auto;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: auto;
}

.service-content h3 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.faq-item {
    border: 0.1rem solid #ddd;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.faq-item h3 {
    color: #1a4cd8;
}

/* Results Section */
.results {
    padding: 4rem 0;
}

.results-content {
    display: flex;
    flex-direction: column;
}

.results-text {
    margin-bottom: 3rem;
}

.results-image img {
    width: 100%;
    border-radius: 1rem;
}

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

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

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

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

textarea {
    min-height: 15rem;
}

button[type="submit"] {
    width: 100%;
}

/* Footer */
footer {
    padding: 3rem 0;
    background-color: #fff;
    border-top: 0.1rem solid #eee;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.footer-logo a {
    color: #1a4cd8;
    font-size: 2.4rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-info p {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

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

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 1.4rem;
}

.footer-copyright {
    font-size: 1.4rem;
    color: #777;
}

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

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

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

.social-links a:hover {
    background-color: #1642c2;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a4cd8;
    color: #fff;
    padding: 2rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

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

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

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

.success-content h1 {
    font-size: 3.6rem;
    margin-bottom: 1rem;
}

.success-content h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
}

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

    h2 {
        font-size: 2.6rem;
    }

    h3 {
        font-size: 2rem;
    }

    .nav-links {
        display: flex;
    }

    .hero-content, 
    .features-content, 
    .results-content {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .hero-text, 
    .features-text, 
    .results-text {
        flex: 1;
        margin-bottom: 0;
    }

    .hero-image, 
    .features-image, 
    .results-image {
        flex: 1;
    }

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

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-logo, 
    .footer-info, 
    .footer-links {
        flex: 1 1 30%;
    }

    .footer-copyright, 
    .social-links {
        flex: 1 1 45%;
    }
}

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

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

    .footer-logo {
        flex: 1 1 20%;
    }

    .footer-info {
        flex: 1 1 30%;
    }

    .footer-links {
        flex: 1 1 20%;
    }

    .footer-copyright {
        flex: 1 1 70%;
    }

    .social-links {
        flex: 1 1 20%;
        justify-content: flex-end;
    }
}

textarea{
  resize: vertical;
}