/* 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;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    font-size: 1.6rem;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-text {
    font-size: 2.4rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.2rem;
}

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

.nav-list a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.6rem;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #333;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.4rem;
}

.mobile-menu-toggle span {
    width: 2.5rem;
    height: 0.3rem;
    background: #000;
    transition: 0.3s;
}

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

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.hero-title {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 3rem;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 2rem;
}

/* Section Titles */
.section-title {
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6rem;
    color: #ffffff;
    line-height: 1.3;
}

/* Services Section */
.services {
    padding: 10rem 0;
    background: #111111;
}

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

.services-image {
    flex: 1;
    min-width: 30rem;
    text-align: center;
}

.services-image img {
    max-width: 100%;
    height: auto;
}

.services-grid {
    flex: 1;
    min-width: 40rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    text-align: left;
}

.service-item h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ff8c00;
}

.service-item p {
    font-size: 1.6rem;
    color: #cccccc;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 10rem 0;
    background: #0a0a0a;
}

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

.team-member {
    /*background: #1a1a1a;*/
    padding: 3rem;
    /*border-radius: 2rem;*/
    text-align: center;
    flex: 1;
    min-width: 25rem;
    max-width: 30rem;
    /*border: 1px solid #333;*/
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-1rem);
}

.member-image {
   width: 222px;
height: 283px;
    margin: 0 auto 2rem;
    border-radius: 50%;


    display: flex;
    align-items: center;
    justify-content: center;
}

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

.team-member h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ff8c00;
    letter-spacing: 0.1rem;
}

.team-member p {
    font-size: 1.4rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Courses Section */
.courses {
    padding: 10rem 0;
    background: #111111;
}

.courses-intro {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.courses-intro p {
    font-size: 1.8rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.course-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    flex-wrap: wrap;
}

.course-block:nth-child(even) {
    flex-direction: row-reverse;
}

.course-image {
    flex: 1;
    min-width: 30rem;
    text-align: center;
}

.course-image img {
    max-width: 100%;
    height: auto;
    border-radius: 2rem;
}

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

.course-details h3 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ff8c00;
    line-height: 1.3;
}

.course-details p {
    font-size: 1.6rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.course-info {
    margin-top: 2rem;
}

.course-info p {
    font-size: 1.4rem;
    color: #ff8c00;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 10rem 0;
    background: #0a0a0a;
}

.contact-subtitle {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #ff8c00;
}

.contact-description {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #cccccc;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

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

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

.form-group input {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid #333;
    border-radius: 1rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1.6rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder {
    color: #888;
}

.form-group input:focus {
    outline: none;
    border-color: #ff8c00;
}

.submit-btn {
    width: 100%;
    padding: 1.8rem;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    border: none;
    border-radius: 1rem;
    color: #000;
    font-size: 1.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-family: 'Inter', sans-serif;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    padding: 4rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left p,
.footer-right p {
    color: #000;
    font-size: 1.4rem;
}

.footer-right a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.footer-right a:hover {
    text-decoration: underline;
}

.footer-info {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.footer-info p {
    color: #000;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 1rem;
    padding: 2rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5);
}

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

.cookie-content p {
    color: #cccccc;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

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

.cookie-btn.accept {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: #000;
}

.cookie-btn.accept:hover {
    background: linear-gradient(135deg, #e67e00, #ff9500);
}

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

.cookie-btn.decline:hover {
    background: #555;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
    }

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

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

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

    .course-block {
        flex-direction: column;
        text-align: center;
    }

    .course-block:nth-child(even) {
        flex-direction: column;
    }

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

    .services-grid {
        min-width: auto;
        text-align: center;
    }

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

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .cookie-popup {
        left: 1rem;
        right: 1rem;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

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

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

    .hero {
        padding: 4rem 0;
    }

    .services,
    .team,
    .courses,
    .contact {
        padding: 6rem 0;
    }

    .service-card,
    .team-member {
        min-width: auto;
        max-width: none;
    }

    .services-grid {
        min-width: auto;
    }
}