/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #2DD4BF, #14B8A6);
    color: white;
    padding: 1.2rem 2.4rem;
    border-radius: 0.8rem;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 1rem 2rem rgba(45, 212, 191, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2DD4BF;
    padding: 1.2rem 2.4rem;
    border: 0.2rem solid #2DD4BF;
    border-radius: 0.8rem;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #2DD4BF;
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1F2937;
    color: white;
    padding: 2rem;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 120rem;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.btn-accept {
    background: #2DD4BF;
    color: white;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 0.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background: #14B8A6;
}

.btn-decline {
    background: transparent;
    color: white;
    padding: 0.8rem 1.6rem;
    border: 0.1rem solid white;
    border-radius: 0.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-decline:hover {
    background: white;
    color: #1F2937;
}

/* Header */
.header {
    background:  linear-gradient(180deg, #5EC8BC 0%, #001B2A 100%)!important;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 120rem;
    margin: 0 auto;
}

.logo span {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2DD4BF;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2DD4BF;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 2.5rem;
    height: 0.3rem;
    background: white;
    margin: 0.3rem 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    /*background:  linear-gradient(180deg, #5EC8BC 0%, #001B2A 100%);*/
    color: white;
    padding: 12rem 0 8rem;
    margin-top: 7rem;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 6rem;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 30rem;
}

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

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    min-width: 30rem;
}

.hero-image img {
    border-radius: 1rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
}

/* Knowledge Partner Section */
.knowledge-partner {
    padding: 8rem 0;
    background: #F8FAFC;
}

.partner-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.partner-image {
    flex: 1;
    min-width: 30rem;
}

.partner-image img {
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.partner-text {
    flex: 1;
    min-width: 30rem;
}

.partner-text h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1E293B;
}

.partner-text p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #64748B;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: white;
}

.services h2 {
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1E293B;
}

.services-intro {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 6rem;
    color: #64748B;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    flex-basis: calc(33.333% - 2rem);
    min-width: 30rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #2DD4BF, #14B8A6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 4rem;
    height: 4rem;
    filter: brightness(0) invert(1);
}

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

.service-card p {
    font-size: 1.4rem;
    color: #64748B;
    line-height: 1.6;
}

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

.courses-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.courses-text {
    flex: 1;
    min-width: 30rem;
}

.courses-text h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1E293B;
}

.courses-text > p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    color: #64748B;
}

.course-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1E293B;
}

.feature p {
    font-size: 1.4rem;
    color: #64748B;
    line-height: 1.6;
}

.courses-image {
    flex: 1;
    min-width: 30rem;
}

.courses-image img {
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: white;
}

.testimonials h2 {
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6rem;
    color: #1E293B;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    flex-basis: calc(33.333% - 2rem);
    min-width: 30rem;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.testimonial-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 0.5rem;
}

.rating {
    color: #F59E0B;
    font-size: 1.4rem;
}

.testimonial-card p {
    font-size: 1.4rem;
    color: #64748B;
    line-height: 1.6;
    font-style: italic;
}

/* Why Choose Section */
.why-choose {
    padding: 8rem 0;
    background: #F8FAFC;
}

.why-choose-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.why-choose-text {
    flex: 1;
    min-width: 30rem;
}

.why-choose-text h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1E293B;
}

.why-choose-text p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #64748B;
}

.why-choose-image {
    flex: 1;
    min-width: 30rem;
}

.why-choose-image img {
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: white;
}

.contact h2 {
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1E293B;
}

.contact > p {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 6rem;
    color: #64748B;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: flex;
    gap: 6rem;
    flex-wrap: wrap;
}

.contact-form {
    flex: 1;
    min-width: 30rem;
}

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

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

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

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

.contact-info {
    flex: 1;
    min-width: 30rem;
}

.contact-item {
    margin-bottom: 3rem;
}

.contact-item h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1E293B;
}

.contact-item p {
    font-size: 1.4rem;
    color: #64748B;
}

/* Footer */
.footer {
    background:  linear-gradient(180deg, #5EC8BC 0%, #001B2A 100%);
    color: white;
    padding: 6rem 0 2rem;
}

.footer-content {
    display: flex;
    gap: 6rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 25rem;
}

.footer-brand .logo span {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2DD4BF;
    margin-bottom: 2rem;
    display: block;
}

.footer-brand p {
    font-size: 1.4rem;
    color: #94A3B8;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 15rem;
}

.footer-column h4 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2DD4BF;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    font-size: 1.4rem;
    color: #94A3B8;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #2DD4BF;
}

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

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

/* Success Page */
.success-section {
    padding: 15rem 0 8rem;
    background: linear-gradient(135deg, #F0FDF4, #ECFDF5);
    text-align: center;
}

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

.success-icon {
    margin: 0 auto 3rem;
    width: 10rem;
    height: 10rem;
}

.success-content h1 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1E293B;
}

.success-content p {
    font-size: 1.8rem;
    margin-bottom: 4rem;
    color: #64748B;
}

.success-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Styles */
@media (max-width: 768px) {
    html {
        font-size: 9px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 7rem;
        flex-direction: column;
        background: #0F172A;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(0.8rem) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-0.8rem) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-container,
    .partner-content,
    .courses-content,
    .why-choose-content {
        flex-direction: column;
        gap: 4rem;
    }

    .services-grid,
    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card,
    .testimonial-card {
        flex-basis: auto;
        max-width: 50rem;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 3rem;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 8px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 1.5rem;
    }

    .hero {
        padding: 10rem 0 6rem;
    }

    .services,
    .courses,
    .testimonials,
    .why-choose,
    .contact {
        padding: 6rem 0;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
}
.hero-content p{
    color: #333333;
}