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

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

body {
    font-family: 'Poppins', 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;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.4rem;
    margin-top: 4rem;
    margin-bottom: 3rem;
}

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

p {
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: 5rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Poppins', sans-serif;
}

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

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

.btn-secondary {
    background-color: white;
    color: #222;
}

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

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

.logo {
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: #1a202c;
}

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

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

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

.cookie-content h2 {
    margin-top: 0;
    font-size: 3.2rem;
}

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

/* Hero Section */
.hero {
    background-color: #1a202c;
    color: white;
    padding: 6rem 0;
}

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

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

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.hero-image {
    display: none;
}

/* Categories Section */
.categories {
    padding: 4rem 0;
}

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

.category-item {
    flex: 1 1 100%;
    margin-bottom: 3rem;
}

.category-image {
    height: 20rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Us Section */
.why-us {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

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

.benefit-item {
    flex: 1 1 100%;
    margin-bottom: 3rem;
}

.benefit-image {
    height: 20rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials {
    margin-top: 4rem;
}

.testimonial {
    padding: 2rem;
    margin-bottom: 2rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.2rem 0.5rem rgba(0,0,0,0.05);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-weight: 600;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    counter-reset: step;
}

.step {
    flex: 1 1 100%;
    position: relative;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: #b935a2;
    color: white;
    font-weight: 600;
    border-radius: 50%;
    margin-bottom: 1rem;
}

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

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

input, textarea {
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
}

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

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

.footer-logo {
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    margin-right: 2rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 1.4rem;
    opacity: 0.7;
}

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

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

/* Media Queries */
@media (min-width: 576px) {
    html {
        font-size: 11px;
    }
}

@media (min-width: 768px) {
    html {
        font-size: 12px;
    }
    
    .hero .container {
        display: flex;
        align-items: center;
        gap: 4rem;
    }
    
    .hero-content {
        flex: 1;
    }
    
    .hero-image {
        display: block;
        flex: 1;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
        border-radius: 0.5rem;
    }
    
    .category-item {
        flex: 1 1 calc(50% - 2rem);
    }
    
    .benefit-item {
        flex: 1 1 calc(50% - 2rem);
    }
    
    .step {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (min-width: 992px) {
    html {
        font-size: 13px;
    }
    
    .category-item {
        flex: 1 1 calc(33.333% - 2rem);
    }
    
    .benefit-item {
        flex: 1 1 calc(33.333% - 2rem);
    }
    
    .step {
        flex: 1 1 calc(25% - 2rem);
    }
}

@media (min-width: 1200px) {
    html {
        font-size: 14px;
    }
}