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

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

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

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

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #e8f542;
    color: #1a1f3a;
    padding: 1.5rem 3rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.4rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1a1f3a;
    padding: 1.5rem 3rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.4rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 0.2rem solid #1a1f3a;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background-color: #1a1f3a;
    color: #ffffff;
}

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

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

.cookie-content {
    color: #1a1f3a;
}

.cookie-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.cookie-content h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1f3a;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

/* Header */
.header {
    padding: 2rem 0;
    background-color: #1a1f3a;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e8f542;
    text-decoration: none;
}

.nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #e8f542;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-text h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #e8f542;
    margin-bottom: 2rem;
}

.hero-text p {
    margin-bottom: 2rem;
    font-size: 1.4rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e8f542;
}

.hero-image {
    border-radius: 2rem;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Courses Section */
.courses {
    padding: 6rem 0;
}

.courses h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #e8f542;
    text-align: center;
    margin-bottom: 2rem;
}

.section-description {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.4rem;
}

.courses-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.course-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 2rem;
    text-align: center;
}

.course-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.course-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #e8f542;
}

.course-card p {
    font-size: 1.3rem;
    line-height: 1.5;
}

.courses-image {
    margin-bottom: 3rem;
    border-radius: 2rem;
    overflow: hidden;
}

.courses-image img {
    width: 100%;
    height: auto;
    display: block;
}

.courses .btn-primary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Why Us Section */
.why-us {
    padding: 6rem 0;
}

.why-us h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #e8f542;
    text-align: center;
    margin-bottom: 2rem;
}

.why-us-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.why-us-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-us-icon {
    font-size: 3rem;
}

.why-us-item h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #e8f542;
}

.why-us-item p {
    font-size: 1.3rem;
    line-height: 1.5;
}

.why-us-image {
    border-radius: 2rem;
    overflow: hidden;
}

.why-us-image img {
    width: 100%;
    height: auto;
    display: block;
}

.why-us .btn-primary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Platform Section */
.platform {
    padding: 6rem 0;
}

.platform-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.platform-image {
    border-radius: 2rem;
    overflow: hidden;
}

.platform-image img {
    width: 100%;
    height: auto;
    display: block;
}

.platform-text h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #e8f542;
    margin-bottom: 2rem;
}

.platform-text p {
    margin-bottom: 2rem;
    font-size: 1.4rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

.contact-text p {
    margin-bottom: 2rem;
    font-size: 1.4rem;
    line-height: 1.6;
}

.contact-info {
    font-weight: 600;
}

.contact-form-wrapper {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #e8f542;
}

.form-group input {
    padding: 1.5rem;
    border: none;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.4rem;
    font-family: inherit;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
}

.contact-image {
    border-radius: 2rem;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Success Page */
.success-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.success {
    padding: 6rem 0;
}

.success-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.success-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #e8f542;
    margin-bottom: 2rem;
}

.success-text p {
    margin-bottom: 2rem;
    font-size: 1.4rem;
    line-height: 1.6;
}

.success-features {
    list-style: none;
    margin-bottom: 2rem;
}

.success-features li {
    padding: 0.5rem 0;
    font-size: 1.3rem;
}

.success-image {
    border-radius: 2rem;
    overflow: hidden;
}

.success-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e8f542;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #e8f542;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

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

    .cookie-popup {
        max-width: 50rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

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

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav {
        flex-direction: row;
        gap: 3rem;
    }

    .hero-text h2 {
        font-size: 4rem;
    }

    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .courses-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .course-card {
        flex: 1;
        min-width: 30rem;
    }

    .why-us-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .why-us-list {
        flex: 1;
    }

    .why-us-image {
        flex: 1;
        max-width: 40rem;
    }

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

    .platform-image {
        flex: 1;
        max-width: 40rem;
    }

    .platform-text {
        flex: 1;
    }

    .contact-content {
        flex-direction: row;
    }

    .contact-text {
        flex: 1;
    }

    .contact-form-wrapper {
        flex: 1;
        max-width: 40rem;
    }

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

    .success-text {
        flex: 1;
    }

    .success-image {
        flex: 1;
        max-width: 40rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-nav {
        flex-direction: row;
        gap: 3rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
    }

    .hero-text {
        flex: 1;
    }

    .hero-image {
        flex: 1;
        max-width: 50rem;
    }

    .hero-text h2 {
        font-size: 5rem;
    }

    .courses-grid {
        gap: 3rem;
    }

    .course-card {
        min-width: 25rem;
    }

    .platform-content {
        gap: 5rem;
    }

    .contact-content {
        gap: 5rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
    .hero-text h2 {
        font-size: 6rem;
    }

    .courses h2,
    .why-us h2,
    .platform-text h2,
    .contact-text h2 {
        font-size: 3rem;
    }
}