.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: 'Inter', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

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

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

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

.btn-secondary:hover {
    background-color: #76C7E8;
    transform: translateY(-0.2rem);
}

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

.btn-submit:hover {
    background-color: #76C7E8;
    transform: translateY(-0.2rem);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #87CEEB;
    padding: 2rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    color: #333;
    font-size: 1.4rem;
    margin: 0;
}

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

.btn-accept,
.btn-decline {
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #333;
    color: #fff;
}

.btn-decline {
    background-color: transparent;
    color: #333;
    border: 0.1rem solid #333;
}

.btn-accept:hover,
.btn-decline:hover {
    transform: translateY(-0.2rem);
}

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

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

.nav-item {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: opacity 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    opacity: 0.8;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 4rem;
}

/* Platform Section */
.platform-section {
    padding: 8rem 0;
    background-color: #fff;
}

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

.platform-text {
    flex: 1;
}

.platform-image {
    flex: 1;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.platform-description {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.6;
}

.learning-culture {
    background-color: #f8f9fa;
    padding: 4rem;
    border-radius: 1rem;
}

.culture-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

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

.culture-list {
    list-style: none;
    margin-bottom: 3rem;
}

.culture-list li {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Features Section */
.features-section {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    padding: 2rem;
}

.feature-card img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.feature-card p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.5;
}

/* Consultation Section */
.consultation-section {
    padding: 8rem 0;
    background-color: #fff;
}

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

.consultation-image {
    flex: 1;
}

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

.consultation-text {
    flex: 1;
}

.consultation-text h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.consultation-text p {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.contact-description {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-note {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 4rem;
    line-height: 1.6;
}

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

.form-subtitle {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 500;
}

.form-note {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.contact-form input,
.contact-form textarea {
    padding: 1.5rem 2rem;
    border: 0.1rem solid #ddd;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-family: inherit;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

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

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

/* Footer */
.footer {
    background-color: #87CEEB;
    padding: 2rem 0;
}

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

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

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: opacity 0.3s ease;
}

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

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

.success-section {
    padding: 8rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

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

.success-title {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.success-text {
    margin-bottom: 4rem;
}

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

.success-highlight {
    font-style: italic;
    color: #333;
}

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

    .nav-container {
        flex-wrap: nowrap;
        justify-content: space-around;
    }

    .hero-title {
        font-size: 5rem;
    }

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

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

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

    .feature-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

    .cookie-content {
        flex-direction: row;
        text-align: left;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}

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

    .section-title {
        font-size: 3.6rem;
    }

    .feature-card {
        min-width: calc(25% - 1.5rem);
    }

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

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        padding: 0 6rem;
    }
}