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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.cookie-content p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.cookie-types h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.cookie-types ul {
    list-style: none;
    margin-bottom: 20px;
}

.cookie-types li {
    padding: 5px 0;
    color: #666;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-accept {
    background: #8B7EC8;
    color: white;
}

.btn-accept:hover {
    background: #7B6BB8;
}

.btn-reject {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.btn-reject:hover {
    background: #f8f9fa;
}

.btn-manage {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.btn-manage:hover {
    background: #f8f9fa;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 0;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #8B7EC8;
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #8B7EC8;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8B7EC8;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #666;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background-image: url(../assets/i9.png);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./assets/hero-pattern.jpg') center/cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #8B7EC8;
    color: white;
}

.btn-primary:hover {
    background: #7B6BB8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 126, 200, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #8B7EC8;
    border: 2px solid #8B7EC8;
}

.btn-secondary:hover {
    background: #8B7EC8;
    color: white;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 30px 0 15px;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Courses Section */
.courses {
    padding: 100px 0;
    background: #2c3e50;
    color: white;
}

.courses h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.courses-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.course-card {
    background: white;
    color: #333;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.course-duration {
    color: #8B7EC8;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.course-duration strong {
    color: #2c3e50;
}

.course-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1rem;
}

.course-price {
    border-top: 1px solid #eee;
    padding-top: 20px;
    font-weight: 600;
    color: #666;
}

.course-price span {
    font-size: 1.8rem;
    color: #8B7EC8;
    font-weight: 700;
}

.bonus-section {
    background: linear-gradient(135deg, #8B7EC8, #7B6BB8);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.bonus-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.bonus-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.bonus-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.bonus-text ul {
    list-style: none;
}

.bonus-text li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.bonus-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
}

/* Improvement Section */
.improvement {
    padding: 100px 0;
    background: white;
}

.improvement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.improvement-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.improvement-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.improvement-text p {
    margin-bottom: 25px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Results Section */
.results {
    padding: 100px 0;
    background: #f8f9fa;
}

.results h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.results-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #8B7EC8;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: white;
}

.team h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.team-member {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.team-member h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.member-role {
    color: #8B7EC8;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.team-member p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #2c3e50;
    color: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.testimonials-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: white;
    color: #333;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #666;
    font-size: 1rem;
}

.testimonial-author {
    color: #8B7EC8;
    font-weight: 600;
    font-size: 0.9rem;
}

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

/* Partners Section */
.partners {
    padding: 100px 0;
    background: #f8f9fa;
}

.partners h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.partners-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.partner-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
}

.partner-logo {
    width: 120px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.partner-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.partner-benefits {
    background: linear-gradient(135deg, #8B7EC8, #7B6BB8);
    padding: 50px;
    border-radius: 15px;
    color: white;
}

.benefits-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.benefits-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.benefits-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.benefits-text ul {
    list-style: none;
}

.benefits-text li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.benefits-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #2c3e50;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-form-wrapper p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8B7EC8;
    background: rgba(255, 255, 255, 0.15);
}

.contact-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background: #1a252f;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.contact-item .icon {
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #8B7EC8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-content,
    .improvement-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image,
    .improvement-image {
        order: -1;
    }

    .courses-grid,
    .team-grid,
    .testimonials-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .bonus-content,
    .benefits-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-links {
        align-items: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

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

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .course-card,
    .testimonial-card,
    .partner-card {
        padding: 20px;
    }

    h2 {
        font-size: 2rem !important;
    }
}

.text-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 120px 0;
}

.text-section h2 {
    font-family: Poppins;
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;

}

.text-section p {
    font-family: Poppins;
font-weight: 400;
font-size: 18px;
line-height: 100%;
letter-spacing: 0%;
vertical-align: middle;
color: #616370;
}