.terms,
.cookie,
.return,
.disclaimer,
.refund,
.privacy {
  text-align: left;
  padding: 15rem 0;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

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

.btn-primary:hover {
    background-color: #5aa63a;
    transform: translateY(-0.2rem);
}

.btn-secondary {
    background-color: transparent;
    color: #333;
    border: 0.2rem solid #333;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background-color: #333;
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    z-index: 1000;
    display: none;
}

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

.cookie-content p {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Unbounded', sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #6BC544;
    color: white;
}

.cookie-btn.decline {
    background-color: transparent;
    color: white;
    border: 0.1rem solid white;
}

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

.nav {
    background-color: #6BC544;
    border-radius: 5rem;
    margin: 2rem;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    color: white;
    font-weight: 700;
    font-size: 1.6rem;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.3rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

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

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 30rem;
}

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

.about-text {
    flex: 1;
    min-width: 30rem;
}

.about-text h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Collection Section */
.collection {
    background-color: #6BC544;
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.collection h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.collection-subtitle {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.collection-description {
    font-size: 1.4rem;
    margin-bottom: 4rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.collection-categories {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.category {
    flex: 1;
    min-width: 20rem;
    text-align: center;
}

.category h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.category p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Offers Section */
.offers {
    padding: 8rem 0;
    background-color: #fff;
    text-align: center;
}

.offers h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.offers-subtitle {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #333;
}

.offers-description {
    font-size: 1.4rem;
    margin-bottom: 4rem;
    color: #666;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.offers-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.offer-item {
    flex: 1;
    min-width: 25rem;
    text-align: center;
}

.offer-image {
    margin-bottom: 2rem;
}

.offer-image img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 1rem;
}

.offer-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.offer-item p {
    font-size: 1.2rem;
    color: #666;
}

/* Testimonials Section */
.testimonials {
    background-color: #6BC544;
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 25rem;
    text-align: left;
}

.testimonial p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    font-size: 1.2rem;
    font-weight: 600;
    font-style: normal;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background-color: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.contact p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #666;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 60rem;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.5rem;
    border: 0.1rem solid #ddd;
    border-radius: 0.5rem;
    font-family: 'Unbounded', sans-serif;
    font-size: 1.4rem;
    background-color: #f8f8f8;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6BC544;
}

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

/* Success Page */
.success-main {
    padding: 8rem 0;
    background-color: #fff;
    text-align: center;
    min-height: 60vh;
}

.success-content h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #333;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.success-text {
    max-width: 80rem;
    margin: 0 auto 4rem;
    text-align: left;
}

.success-text p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.8;
}

.success-text p strong {
    color: #333;
}

/* Footer */
.footer {
    background-color: #6BC544;
    color: white;
    padding: 3rem 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer p {
    font-size: 1.3rem;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav {
        margin: 3rem;
        padding: 2rem 4rem;
    }
    
    .nav-links {
        gap: 4rem;
    }
    
    .hero-title {
        font-size: 3.6rem;
    }
    
    .hero-text {
        font-size: 1.6rem;
    }
    
    .about-content {
        flex-wrap: nowrap;
    }
    
    .collection-categories {
        flex-wrap: nowrap;
    }
    
    .offers-grid {
        flex-wrap: nowrap;
    }
    
    .testimonials-grid {
        flex-wrap: nowrap;
    }
    
    .cookie-popup {
        max-width: 50rem;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    .cookie-buttons {
        flex-wrap: nowrap;
        justify-content: flex-end;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 4rem;
    }
    
    .hero {
        padding: 12rem 0;
    }
    
    .hero-title {
        font-size: 4.8rem;
    }
    
    .about,
    .offers,
    .contact {
        padding: 10rem 0;
    }
    
    .collection,
    .testimonials {
        padding: 10rem 0;
    }
    
    .footer .container {
        flex-wrap: nowrap;
    }
    
    .footer-links {
        flex-wrap: nowrap;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .nav {
        margin: 4rem;
    }
    
    .hero-title {
        font-size: 5.4rem;
    }
    
    .hero-text {
        font-size: 1.8rem;
    }
}