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

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

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

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

/* Headings */
h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3rem;
}

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

h3 {
    font-size: 1.8rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background-color: #FFE74C;
    color: #333;
}

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

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

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

.btn-cta {
    background-color: #FFE74C;
    color: #333;
}

.btn-cta:hover {
    background-color: #f9df38;
}

.btn-submit {
    background-color: #FFE74C;
    color: #333;
    width: 100%;
}

.btn-submit:hover {
    background-color: #f9df38;
}

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

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

.cookie-popup h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: left;
}

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

.cookie-popup .btn {
    margin: 1rem 0;
}

/* Header */
.header {
    background-color: #3498DB;
    padding: 1.5rem 0;
    color: white;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 80rem;
    margin: 0 auto;
}

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

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

/* Features Section */
.features {
    padding: 5rem 0;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.feature-item {
    flex: 1 1 100%;
    text-align: center;
    padding: 2rem;
}

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

.feature-icon img {
    width: 6rem;
    height: 6rem;
}

/* CTA Section */
.cta {
    background-color: #3498DB;
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta h2 {
    margin-bottom: 1.5rem;
}

.cta p {
    margin-bottom: 2.5rem;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}

/* Education Areas */
.education-areas {
    padding: 5rem 0;
}

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

.area-item {
    flex: 1 1 100%;
    margin-bottom: 2rem;
}

.area-item h3 {
    margin-bottom: 0.5rem;
}

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

.steps-container {
    position: relative;
    padding: 3rem 0;
}

.step-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #3498DB;
    z-index: 1;
    display: none;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.step {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 3rem;
}

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

/* Contact Form */
.contact-form {
    padding: 5rem 0;
    background-color: #f5f5f5;
}

.form-container {
    background-color: #3498DB;
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    max-width: 50rem;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Advent Pro', sans-serif;
    font-size: 1.6rem;
}

.form-group textarea {
    resize: vertical;
}

/* Success Message */
.success-message {
    padding: 10rem 0;
    text-align: center;
}

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

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

/* Footer */
.footer {
    background-color: #3498DB;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1.4rem;
}

.copyright {
    font-size: 1.2rem;
}

/* Media Queries */
@media (min-width: 576px) {
    h1 {
        font-size: 3.6rem;
    }
    
    .feature-item {
        flex: 1 1 45%;
    }
    
    .area-item {
        flex: 1 1 45%;
    }
    
    .step {
        flex: 1 1 30%;
        margin-bottom: 0;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }
    
    .cookie-popup .btn {
        display: inline-block;
    }
    
    .step-line {
        display: block;
    }
    
    .steps {
        flex-wrap: nowrap;
    }
    
    .step {
        flex: 1;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 4.5rem;
    }
    
    .feature-item {
        flex: 1 1 22%;
    }
    
    .area-item {
        flex: 1 1 30%;
    }
}