/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Akrobat', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 1.6rem;
}

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.btn-primary {
    background-color: #59C24D;
    color: white;
}

.btn-primary:hover {
    background-color: #6BC219;
    transform: translateY(-0.2rem);
}

.btn-outline {
    background: #59C24D;
    color: white;
    border: 0.2rem solid #59C24D;

    text-align: center;

    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 19.2px */
    text-transform: uppercase;
}

.btn-outline:hover {
    background-color: #59C24D;
    color: white;
}

.btn-accept {
    background-color: #59C24D;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.4rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.btn-policy {
    background-color: transparent;
    color: #666;
    padding: 1rem 2rem;
    border: 0.1rem solid #ccc;
    border-radius: 0.4rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1.2rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    padding: 2rem;
}

.cookie-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.cookie-content p {
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.4rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* 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: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-size: 2.4rem;
    font-weight: 700;

    color: #59C24D;
}

.logo a {
    text-decoration: none;
    color: #333;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #59C24D;
}

/* Hero Section */
.hero {
    margin-top: 7rem;
    padding: 0;
    background: white;
    min-height: 50rem;
}

.hero-content {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-wrap: nowrap;
    min-height: 50rem;
}

.hero-text {
    flex: 1;
    background: #59C24D;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 4rem;
    min-width: 45%;
}

.hero-text h1 {
    font-size: 5.2rem;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin: 0;
    text-align: left;
}

.hero-image {
    flex: 1;
    min-width: 55%;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

/* Courses Section */
.courses {
    padding: 8rem 0;
    background: white;
}

.courses h2 {
    text-align: center;
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.courses-subtitle {
    text-align: center;
    max-width: 120rem;
    margin: 0 auto 6rem;
    font-size: 1.8rem;
    color: #666;
    line-height: 1.6;
}

.courses-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.course-card {
    flex: 1;
    min-width: 25rem;
    max-width: 30rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.15);
}

.course-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-icon img {
    width: 3rem;
    height: 3rem;
}

.course-card h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.course-card p {
    margin-bottom: 2.5rem;
    color: #666;
    line-height: 1.6;
}

/* Educational Investment Section */
.educational-investment {
    padding: 8rem 0;
    background: #070707;
    text-align: center;
}

.educational-investment h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.educational-investment p {
    max-width: 80rem;
    margin: 0 auto;
    font-size: 1.8rem;
    color: white;
    line-height: 1.6;
}

/* Steps Section */
.steps {
    padding: 8rem 0;
    background: white;
}

.steps h2 {
    text-align: center;
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.steps-subtitle {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 6rem;
    font-size: 1.8rem;
    color: #666;
    line-height: 1.6;
}

.steps-list {
    max-width: 80rem;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    /*margin-bottom: 4rem;*/
    /*padding-bottom: 4rem;*/

}

.step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    background: #59C24D;
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 2.4rem;
    font-weight: 600;
    /*margin-bottom: 1rem;*/
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Certification Section */
.certification {
    padding: 8rem 0;
    background: #f8f9fa;
}

.certification-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.certification-image {
    flex: 1;
    min-width: 30rem;
}

.certification-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.certification-text {
    flex: 1;
    min-width: 30rem;
}

.certification-text h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.3;
}

.certification-text p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
    font-size: 1.6rem;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
    color: #333;
}

.testimonials-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 30rem;
    max-width: 35rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testimonial-card:hover {
    transform: translateY(-0.3rem);
}

.testimonial-avatar {
    width: 6rem;
    height: 6rem;
    /*margin: 0 auto 2rem;*/
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.testimonial-card h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.testimonial-card p {
    color: #666;
    line-height: 1.6;
    font-style: italic;
    text-align: left;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: #59C24D;
}

.contact-content {
    display: flex;
    align-items: flex-start;
    gap: 8rem;
    flex-wrap: wrap;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 4rem;
}

.contact-text {
    flex: 1;
    min-width: 35rem;
    padding-top: 2rem;
}

.contact-text h2 {
    font-size: 4.2rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.contact-description {
    color: white;
    font-size: 1.6rem;
    line-height: 1.5;
    opacity: 0.9;
}

.contact-form {
    flex: 1;
    min-width: 40rem;
    max-width: 50rem;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.form-group {
    margin-bottom: 2rem;
    flex: 1;
    min-width: 15rem;
}

.form-group-full {
    width: 100%;
    margin-bottom: 2rem;
}

.form-group input,
.form-group-full textarea {
    width: 100%;
    padding: 1.8rem 2rem;
    border: none;
    /*border-radius: 0.8rem;*/
    font-size: 1.6rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: none;
    font-family: inherit;
}

.form-group input:focus,
.form-group-full textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 0.3rem rgba(255, 255, 255, 0.3);
}

.form-group input::placeholder,
.form-group-full textarea::placeholder {
    color: #999;
    font-size: 1.4rem;
}

.form-group-full textarea {
    min-height: 12rem;
    resize: vertical;
}

.contact-form .btn {
    background: white;
    color: #333;
    padding: 1.8rem 4rem;
    font-size: 1.4rem;
    border: none;
    border-radius: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-left: auto;
    display: block;
    min-width: 20rem;
}

.contact-form .btn:hover {
    background: #f8f9fa;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #222;
    color: white;
    padding: 6rem 0 4rem;
}

.footer-content {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 4rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-logo {
    font-size: 2.8rem;
    font-weight: 700;
    color: #59C24D;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.6rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-right {
    text-align: right;
}

.footer-address {
    color: #ccc;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-email {
    color: #ccc;
    font-size: 1.4rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: white;
}

.footer-bottom {
    border-top: 0.1rem solid #444;
    padding-top: 2rem;
}

.footer-copyright {
    color: #888;
    font-size: 1.4rem;
}

/* Contact and Footer Mobile Responsive */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        gap: 4rem;
        padding: 0 2rem;
    }

    .contact-text {
        min-width: 100%;
        text-align: center;
        padding-top: 0;
    }

    .contact-text h2 {
        font-size: 3.2rem;
    }

    .contact-form {
        min-width: 100%;
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form .btn {
        margin: 0 auto;
        width: 100%;
        max-width: 25rem;
    }

    .footer-content {
        padding: 0 2rem;
    }

    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .footer-left {
        align-items: center;
    }

    .footer-links {
        justify-content: center;
        gap: 2rem;
    }

    .footer-right {
        text-align: center;
    }
}

/* Success Page Styles */
.success-main {
    margin-top: 8rem;
    min-height: calc(100vh - 16rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-section {
    padding: 8rem 0;
    text-align: center;
}

.success-content {
    max-width: 60rem;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 3rem;
}

.checkmark {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: #59C24D;
    color: white;
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: bold;
}

.success-content h1 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.success-content p {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-content .btn {
    margin-top: 2rem;
}

/* Mobile First Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 9px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        margin-top: 7rem;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text {
        min-width: 100%;
        padding: 4rem 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3.6rem;
        text-align: center;
    }

    .hero-image {
        min-width: 100%;
        min-height: 30rem;
    }

    .courses-grid {
        flex-direction: column;
        align-items: center;
    }

    .course-card {
        max-width: 100%;
    }

    .steps-list {
        padding: 0 1rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .certification-content {
        flex-direction: column;
        gap: 4rem;
    }

    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }

    .cookie-popup {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .cookie-content {
        padding: 1.5rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .btn-accept,
    .btn-policy {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 8px;
    }

    .hero-text h1 {
        font-size: 3.2rem;
    }

    .hero-text {
        padding: 3rem 1.5rem;
    }

    .courses h2,
    .educational-investment h2,
    .steps h2,
    .testimonials h2,
    .certification-text h2 {
        font-size: 2.8rem;
    }

    .contact-text h2 {
        font-size: 2.8rem;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .courses-grid {
        justify-content: space-between;
    }

    .course-card {
        flex-basis: calc(50% - 1.5rem);
    }

    .testimonials-grid {
        justify-content: space-between;
    }

    .testimonial-card {
        flex-basis: calc(50% - 1.5rem);
    }
}

/* Mobile First Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 9px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        margin-top: 7rem;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text {
        min-width: 100%;
        padding: 4rem 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3.6rem;
        text-align: center;
    }

    .hero-image {
        min-width: 100%;
        min-height: 30rem;
    }

    .courses-grid {
        flex-direction: column;
        align-items: center;
    }

    .course-card {
        max-width: 100%;
    }

    .steps-list {
        padding: 0 1rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .certification-content {
        flex-direction: column;
        gap: 4rem;
    }

    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        justify-content: center;
    }

    .cookie-popup {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .cookie-content {
        padding: 1.5rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .btn-accept,
    .btn-policy {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 8px;
    }

    .hero-text h1 {
        font-size: 3.2rem;
    }

    .hero-text {
        padding: 3rem 1.5rem;
    }

    .courses h2,
    .educational-investment h2,
    .steps h2,
    .testimonials h2,
    .certification-text h2 {
        font-size: 2.8rem;
    }

    .contact-text h2 {
        font-size: 2.8rem;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .courses-grid {
        justify-content: space-between;
    }

    .course-card {
        flex-basis: calc(50% - 1.5rem);
    }

    .testimonials-grid {
        justify-content: space-between;
    }

    .testimonial-card {
        flex-basis: calc(50% - 1.5rem);
    }
}

/* Large Desktop Styles */
@media (min-width: 1400px) {
    .container {
        max-width: 140rem;
    }

    .hero-text h1 {
        font-size: 5.4rem;
    }
}

.flex {
    display: flex;
    gap: 10px;
}

textarea {
    background: #F5F5F5;

    /* Shadow xs */
    box-shadow: 0px 1px 2px 0px rgba(18, 26, 43, 0.05);
    display: flex;
    height: 88px;
    padding: 12px 14px;
    border: none;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    width: 100%;

}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
}

@media (max-width: 768px) {
    .flex {
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

}
.mobile-menu-btn{
    display: none!important;
}