/* 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 {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 2rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

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

.cookie-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 2.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background:  var(--gr9, linear-gradient(90deg, #AB55F7 0%, #48C8EC 100%));
    color: white;
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn:hover {
    transform: translateY(-0.2rem);
}

/* Header */
.header {
    background: white;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 2.4rem;
    font-weight: 700;
    background:  var(--gr9, linear-gradient(90deg, #AB55F7 0%, #48C8EC 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.nav a:hover {
    color: #8B5CF6;
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
}

.hero-content {
    display: flex;
    flex-direction: column!important;
    gap: 4rem;
    align-items: center;
    text-align: center;
}

.hero-content h2 {
    font-size: 3.2rem;
    font-weight: 700;
    background:  var(--gr9, linear-gradient(90deg, #AB55F7 0%, #48C8EC 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.8rem;
    color: #64748B;
    max-width: 80rem;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    background:  var(--gr9, linear-gradient(90deg, #AB55F7 0%, #48C8EC 100%));
    color: white;
    text-decoration: none;
    border-radius: 5rem;
    font-weight: 600;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 0.4rem 1.5rem rgba(139, 92, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 0.8rem 2.5rem rgba(139, 92, 246, 0.4);
}

.hero-image {
    width: 100%;

    max-width: 60rem;
}

.hero-image img {

    width: 100%;
    /*height: auto;*/
      height: 340px;
    border-radius: 1.5rem;
    object-fit: cover;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}

/* Courses Section */
.courses {
    padding: 8rem 0;
    background: white;
}

.courses h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
    background:  var(--gr9, linear-gradient(90deg, #AB55F7 0%, #48C8EC 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.course-card {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-0.5rem);
}

.course-card.pink {
    background: linear-gradient(135deg, #FDF2F8, #FCE7F3);
}

.course-card.blue {
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
}

.course-card.orange {
    background: linear-gradient(135deg, #FFF7ED, #FFEDD5);
}

.course-image {
    width: 100%;
    height: 20rem;
    overflow: hidden;
}

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

.course-content {
    padding: 2.5rem;
}

.course-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1E293B;
}

.course-content p {
    color: #64748B;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.course-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 2rem;
}

.course-btn {
    padding: 1rem 2.5rem;
    background:  var(--gr9, linear-gradient(90deg, #AB55F7 0%, #48C8EC 100%));
    color: white;
    border: none;
    border-radius: 2.5rem;
    font-weight: 600;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.course-btn:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 0.5rem 1.5rem rgba(139, 92, 246, 0.3);
}

/* Story Section */
.story {
    padding: 8rem 0;
    background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
}

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

.story-text {
    max-width: 60rem;
}

.story-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background:  var(--gr9, linear-gradient(90deg, #AB55F7 0%, #48C8EC 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text p {
    margin-bottom: 2rem;
    color: #64748B;
    font-size: 1.6rem;
    line-height: 1.7;
}

.story-image {
    width: 100%;
    max-width: 50rem;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits {
    padding: 8rem 0;
    background: white;
}

.benefits h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
    background:  var(--gr9, linear-gradient(90deg, #AB55F7 0%, #48C8EC 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.benefit-card {
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
}

.benefit-card.pink {
    background: linear-gradient(135deg, #FDF2F8, #FCE7F3);
}

.benefit-card.blue {
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
}

.benefit-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1E293B;
}

.benefit-card p {
    color: #64748B;
    font-size: 1.5rem;
}

.benefits-cta {
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
}

.contact h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
    background:  var(--gr9, linear-gradient(90deg, #AB55F7 0%, #48C8EC 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.contact-info p {
    margin-bottom: 2rem;
    color: #64748B;
    font-size: 1.6rem;
    line-height: 1.7;
}

.contact-details {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #1E293B;
    font-size: 1.5rem;
}

.contact-image {
    width: 100%;
    max-width: 40rem;
    margin: 2rem auto 0;
}

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

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: #1E293B;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 0.1rem solid #E2E8F0;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background:  var(--gr9, linear-gradient(90deg, #AB55F7 0%, #48C8EC 100%));
    color: white;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 0.5rem 1.5rem rgba(139, 92, 246, 0.3);
}

/* Footer */
.footer {
    background: #1E293B;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 700;
    background:  var(--gr9, linear-gradient(90deg, #AB55F7 0%, #48C8EC 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 0.1rem solid #334155;
}

.footer-bottom p {
    color: #94A3B8;
    font-size: 1.4rem;
}

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

    .hero-content {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }

    .hero-content > div:first-child {
        flex: 1;
    }

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

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

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

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

    .story-text {
        flex: 1;
    }

    .story-image {
        flex: 1;
        max-width: none;
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .contact-info {
        flex: 1;
    }

    .contact-form {
        flex: 1;
    }

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

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

    .cookie-content p {
        flex: 1;
        margin-right: 2rem;
    }
}

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

    .hero-content h2 {
        font-size: 4.8rem;
    }

    .hero-content p {
        font-size: 2rem;
    }

    .courses-grid {
        gap: 3rem;
    }

    .course-card {
        min-width: calc(33.333% - 2rem);
    }

    .benefits-grid {
        gap: 3rem;
    }

    .benefit-card {
        min-width: calc(50% - 1.5rem);
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .courses-grid {
        justify-content: center;
    }

    .course-card {
        flex: 0 1 35rem;
        max-width: 35rem;
    }

    .benefits-grid {
        justify-content: center;
    }

    .benefit-card {
        flex: 0 1 45rem;
        max-width: 45rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(3rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.course-card,
.benefit-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}