.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;
}

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

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-radius: 2rem 2rem 0 0;
    box-shadow: 0 -0.5rem 2rem rgba(0, 0, 0, 0.1);
    padding: 3rem;
    z-index: 1000;
    display: none;
}

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

.cookie-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cookie-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #666;
}

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

/* Header */
header {
    background-color: #fff;
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

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

.btn-primary {
    background-color: #8B5CF6;
    color: #fff;
}

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

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

.btn-secondary:hover {
    background-color: #8B5CF6;
    color: #fff;
}

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

.btn-outline:hover {
    border-color: #8B5CF6;
    color: #8B5CF6;
}

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

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

.hero-subtitle {
    font-size: 1.8rem;
    color: #666;
    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;
    flex-direction: column;
    gap: 4rem;
}

.about-text h2 {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
}

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

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

/* Formations Section */
.formations {
    padding: 8rem 0;
    background-color: #FAFBFC;
}

.formations h2 {
    font-size: 3.6rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 1.6rem;
    color: #666;
    text-align: center;
    max-width: 90rem;
    margin: 0 auto 5rem;
}

.formations-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.formation-card {
    background-color: #fff;
    padding: 4rem;
    border-radius: 1.5rem;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.05);
    text-align: center;
}

.formation-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
}

.formation-icon img {
    width: 100%;
    height: 100%;
}

.formation-card h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.formation-card p {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2.5rem;
}

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

.lectures h2 {
    font-size: 3.6rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.lectures-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.lecture-card {
    background-color: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.05);
}

.lecture-image {
    width: 100%;
    height: 25rem;
    overflow: hidden;
}

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

.lecture-card h3 {
    font-size: 2rem;
    font-weight: 600;
    padding: 2rem 2rem 1rem;
}

.lecture-card p {
    font-size: 1.5rem;
    color: #666;
    padding: 0 2rem 2rem;
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background-color: #FAFBFC;
}

.faq h2 {
    font-size: 3.6rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
}

.faq-item {
    background-color: #fff;
    padding: 3rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.05);
}

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

.faq-item p {
    font-size: 1.5rem;
    color: #666;
}

.faq .btn {
    display: block;
    margin: 3rem auto 0;
    width: fit-content;
}

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

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

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

.form-group input {
    width: 100%;
    padding: 1.5rem 2rem;
    border: 0.1rem solid #E5E7EB;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-family: 'Unbounded', cursive;
}

.form-group input:focus {
    outline: none;
    border-color: #8B5CF6;
}

.contact form .btn {
    width: 100%;
}

.contact-info {
    text-align: center;
    font-size: 1.4rem;
    color: #666;
    line-height: 1.8;
}

/* Success Page */
.success {
    padding: 20rem 0;
    text-align: center;
    min-height: calc(100vh - 20rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success h1 {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

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

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

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 1.4rem;
}

.footer-links a:hover {
    color: #8B5CF6;
}

footer p {
    font-size: 1.4rem;
    color: #999;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 4rem;
    }

    .cookie-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 5.6rem;
    }

    .about-content {
        flex-direction: row;
        align-items: center;
    }

    .about-text {
        flex: 1;
    }

    .about-image {
        flex: 1;
    }

    .formations-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .formation-card {
        flex: 0 0 calc(50% - 1.5rem);
    }

    .lectures-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .lecture-card {
        flex: 0 0 calc(50% - 1.5rem);
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 6.4rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 3.6rem;
    }

    .formations h2,
    .lectures h2,
    .faq h2 {
        font-size: 4rem;
    }

    .section-subtitle {
        font-size: 1.8rem;
    }

    .formation-card h3 {
        font-size: 2.4rem;
    }

    .formation-card p {
        font-size: 1.6rem;
    }

    .lecture-card {
        flex: 0 0 calc(25% - 2.25rem);
    }

    .faq-item h3 {
        font-size: 2rem;
    }

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