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

*, *:before, *:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

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

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

a {
    text-decoration: none;
    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: 1rem;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

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

.secondary-btn {
    background-color: transparent;
    color: #2563eb;
}

.secondary-btn:hover {
    background-color: rgba(37, 99, 235, 0.1);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2563eb;
    color: white;
    padding: 2rem;
    z-index: 1000;
    display: none; /* Hidden by default, shown with JS */
}

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

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

.cookie-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

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

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

.cookie-buttons .primary-btn {
    background-color: white;
    color: #2563eb;
}

.cookie-buttons .secondary-btn {
    color: white;
    border: 1px solid white;
}

/* Header */
header {
    padding: 2rem 0;
    background-color: #f5f5f7;
    text-align: center;
}

.logo h1 {
    font-size: 3rem;
    margin-bottom: 0;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    background-color: #f5f5f7;
}

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

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

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

/* Stats Section */
.stats {
    padding: 4rem 0;
    background-color: #f5f5f7;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1 1 20rem;
}

.stat-item h3 {
    font-size: 3.6rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.4rem;
    margin-bottom: 0;
}

/* Courses Section */
.courses {
    padding: 6rem 0;
    background-color: white;
    text-align: center;
}

.courses h2 {
    margin-bottom: 4rem;
}

.course-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.course-item {
    flex: 1 1 30rem;
    padding: 2rem;
    text-align: center;
}

.course-item .icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    background-color: #e0e7ff;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-item h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background-color: #2563eb;
    color: white;
}

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

.benefit-item {
    flex: 1 1 40rem;
    padding: 2rem;
}

.benefit-item h2 {
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-container {
    max-width: 80rem;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 3rem;
}

.faq-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    font-size: 1.6rem;
}

/* Contact Form */
.contact {
    padding: 6rem 0;
    background-color: #f5f5f7;
}

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

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

input, textarea {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.8rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
}

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

.form-submit {
    text-align: right;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

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

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

/* Success Page */
.success-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.success-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.circular-image {
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 3rem;
}

.success-button {
    margin-top: 3rem;
}

/* Media Queries */
@media (min-width: 576px) {
    .cookie-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .hero-content h2 {
        font-size: 4rem;
    }
    
    .cookie-buttons {
        justify-content: flex-end;
    }
    
    .stats-container {
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1 1 15rem;
    }
    
    .course-grid {
        justify-content: space-between;
    }
    
    .course-item {
        flex: 0 1 calc(33.333% - 2rem);
    }
}

@media (min-width: 992px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .footer-logo, .footer-links {
        margin-bottom: 0;
    }
    
    .benefits-grid {
        justify-content: space-between;
    }
    
    .benefit-item {
        flex: 0 1 calc(50% - 2rem);
    }
}