.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.5;
    color: #333;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.8rem;
    line-height: 1.3;
}

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

p {
    margin-bottom: 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gold {
    color: #E6A631;
}

.blue {
    color: #0020FF;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.4rem;
}

.btn-primary {
    background-color: #0020FF;
    color: white;
}

.btn-primary:hover {
    background-color: #001adb;
}

.btn-secondary {
    background-color: white;
    color: #0020FF;
    border: 1px solid #0020FF;
}

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

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

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

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

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

.logo-text {
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    font-size: 1.4rem;
}

nav ul li a:hover {
    color: #0020FF;
}

/* 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-logo {
    margin-bottom: 1.5rem;
}

.cookie-logo img {
    width: 6rem;
    height: auto;
}

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

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

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
}

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

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

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

.service-card {
    flex: 1 1 30rem;
    background-color: #f0f2ff;
    padding: 2rem;
    border-radius: 0.8rem;
    text-align: center;
}

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

.service-icon img {
    width: 4rem;
    height: 4rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.about .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
}

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

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
}

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

.testimonial-card {
    flex: 1 1 30rem;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 0.8rem;
}

.stars {
    color: #E6A631;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
}

.client-name {
    font-weight: 600;
    margin-top: 1rem;
}

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

.contact-info {
    margin-bottom: 3rem;
}

.contact-images {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

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

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

/* Success Page */
.success-message {
    padding: 5rem 0;
}

.success-message .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.success-content {
    flex: 1;
}

.success-image {
    flex: 1;
}

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

/* Footer */
footer {
    padding: 3rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.footer-logo {
    margin-bottom: 2rem;
}

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

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

/* Media Queries */
@media (min-width: 768px) {
    /* Hero Section */
    .hero .container {
        flex-direction: row;
    }
    
    /* About Section */
    .about .container {
        flex-direction: row;
    }
    
    /* Success Page */
    .success-message .container {
        flex-direction: row;
    }
}

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