* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d2d2d;
    color: #ffffff;
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: #00b894;
    color: white;
}

.btn-cookie.accept:hover {
    background: #00a383;
}

.btn-cookie.reject {
    background: transparent;
    color: white;
    border: 2px solid #ffffff;
}

.btn-cookie.reject:hover {
    background: rgba(255,255,255,0.1);
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background: #ffffff;
    border-bottom: 1px solid #ececec;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #0984e3;
}

.nav-right {
    display: flex;
    gap: 36px;
}

.nav-right a {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    position: relative;
}

.nav-right a:hover,
.nav-right a.active {
    color: #0984e3;
}

.nav-right a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: #0984e3;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-text {
    flex: 1;
    padding: 80px 60px;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #555;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #0984e3;
    color: white;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #0770c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(9, 132, 227, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #0984e3;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid #0984e3;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #0984e3;
    color: white;
    transform: translateY(-2px);
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    padding: 60px 60px;
    background: #f8f9fa;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #0984e3;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.intro-split {
    display: flex;
    align-items: center;
    padding: 100px 60px;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-visual {
    flex: 1;
}

.intro-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.intro-text {
    flex: 1;
    padding: 0 80px;
}

.intro-text h2 {
    font-size: 40px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.courses-grid {
    padding: 100px 60px;
    background: #fafafa;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-header p {
    font-size: 19px;
    color: #666;
}

.course-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.course-card {
    flex: 0 0 calc(50% - 20px);
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card-visual img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.card-content {
    padding: 32px;
}

.card-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: #0984e3;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background: #0984e3;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #0770c4;
}

.testimonials-split {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    background: #2d3436;
    color: white;
}

.testimonial-content {
    flex: 1;
    padding-right: 80px;
}

.testimonial-content blockquote {
    border-left: 5px solid #0984e3;
    padding-left: 40px;
}

.testimonial-content p {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-content cite {
    font-size: 16px;
    font-style: normal;
    color: #dfe6e9;
}

.testimonial-visual {
    flex: 1;
}

.testimonial-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.cta-band {
    padding: 80px 60px;
    background: linear-gradient(135deg, #0984e3 0%, #0770c4 100%);
    text-align: center;
}

.cta-band-content h2 {
    font-size: 40px;
    color: white;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-band-content p {
    font-size: 19px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.form-split {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    background: #f8f9fa;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.form-container {
    flex: 1;
}

.main-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0984e3;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #0984e3;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0770c4;
    transform: translateY(-2px);
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 60px 60px;
    background: #1a1a1a;
    color: white;
    gap: 60px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #b2bec3;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b2bec3;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #0984e3;
}

.page-hero-split {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    background: #f8f9fa;
}

.content-split {
    display: flex;
    align-items: center;
    padding: 100px 60px;
}

.content-text {
    flex: 1;
    padding-right: 80px;
}

.content-text h2 {
    font-size: 40px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.content-visual {
    flex: 1;
}

.content-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.values-section {
    padding: 100px 60px;
    background: #fafafa;
}

.values-section h2 {
    font-size: 44px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 0 0 calc(50% - 20px);
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #0984e3;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.team-split {
    display: flex;
    align-items: center;
    padding: 100px 60px;
}

.team-split.reverse {
    flex-direction: row-reverse;
}

.team-visual {
    flex: 1;
}

.team-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.team-text {
    flex: 1;
    padding: 0 80px;
}

.team-text h2 {
    font-size: 40px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.stats-highlight {
    display: flex;
    justify-content: space-around;
    padding: 80px 60px;
    background: linear-gradient(135deg, #0984e3 0%, #0770c4 100%);
    color: white;
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 12px;
}

.stat-box p {
    font-size: 17px;
    opacity: 0.9;
}

.cta-simple {
    padding: 100px 60px;
    text-align: center;
}

.cta-simple h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-simple p {
    font-size: 19px;
    color: #666;
    margin-bottom: 32px;
}

.page-intro {
    padding: 80px 60px;
    text-align: center;
    background: #f8f9fa;
}

.page-intro h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.page-intro p {
    font-size: 19px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.services-catalog {
    padding: 60px 60px 100px;
}

.service-item-split {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
}

.service-item-split.reverse {
    flex-direction: row-reverse;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-details p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-bottom: 28px;
}

.feature-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00b894;
    font-weight: 700;
    font-size: 18px;
}

.service-price {
    font-size: 40px;
    font-weight: 800;
    color: #0984e3;
    margin-bottom: 24px;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.benefits-bar {
    padding: 80px 60px;
    background: #2d3436;
    color: white;
}

.benefits-bar h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.benefits-list {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.benefit {
    text-align: center;
    flex: 1;
}

.benefit h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0984e3;
    font-weight: 700;
}

.benefit p {
    font-size: 15px;
    color: #dfe6e9;
}

.contact-hero {
    padding: 80px 60px;
    text-align: center;
    background: linear-gradient(135deg, #0984e3 0%, #0770c4 100%);
    color: white;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.contact-split {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0984e3;
    font-weight: 700;
}

.info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.info-block a {
    color: #0984e3;
    text-decoration: underline;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
}

.contact-reasons {
    padding: 100px 60px;
    background: #fafafa;
}

.contact-reasons h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.reason-item {
    flex: 0 0 calc(50% - 20px);
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.reason-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #0984e3;
    font-weight: 700;
}

.reason-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.thanks-hero {
    padding: 100px 60px;
    text-align: center;
    background: linear-gradient(135deg, #00b894 0%, #00a383 100%);
    color: white;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: white;
    color: #00b894;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    margin: 0 auto 32px;
}

.thanks-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-hero .lead {
    font-size: 22px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.thanks-hero p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.9;
}

.service-info {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
    font-size: 19px;
    font-weight: 600;
}

.next-steps {
    padding: 100px 60px;
    background: white;
}

.next-steps h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    justify-content: space-around;
    gap: 60px;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0984e3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.while-waiting {
    padding: 80px 60px;
    text-align: center;
    background: #f8f9fa;
}

.while-waiting h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.while-waiting p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.waiting-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.testimonial-single {
    padding: 80px 60px;
    background: #2d3436;
    color: white;
}

.testimonial-single blockquote {
    max-width: 900px;
    margin: 0 auto;
    border-left: 5px solid #0984e3;
    padding-left: 40px;
}

.testimonial-single p {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-single cite {
    font-size: 16px;
    font-style: normal;
    color: #dfe6e9;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 800;
}

.update-date {
    font-size: 15px;
    color: #999;
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #0984e3;
    font-weight: 700;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.legal-page a {
    color: #0984e3;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #0770c4;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .testimonials-split,
    .form-split,
    .content-split,
    .team-split,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .team-split.reverse,
    .service-item-split.reverse {
        flex-direction: column;
    }

    .hero-text,
    .intro-text,
    .team-text,
    .testimonial-content,
    .content-text {
        padding: 40px;
    }

    .hero-visual img,
    .intro-visual img,
    .content-visual img,
    .team-visual img,
    .contact-visual img {
        height: 400px;
    }

    .course-cards {
        flex-direction: column;
    }

    .course-card {
        flex: 0 0 100%;
    }

    .values-grid,
    .reasons-grid {
        flex-direction: column;
    }

    .value-item,
    .reason-item {
        flex: 0 0 100%;
    }

    .steps-grid {
        flex-direction: column;
        gap: 40px;
    }

    .benefits-list {
        flex-wrap: wrap;
    }

    .benefit {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .nav-split {
        padding: 20px 30px;
    }

    .nav-right {
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 17px;
    }

    .section-header h2,
    .intro-text h2,
    .content-text h2,
    .team-text h2,
    .contact-info h2,
    .cta-simple h2 {
        font-size: 32px;
    }

    .stats-bar {
        flex-direction: column;
        gap: 32px;
    }

    .footer-split {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }

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

    .waiting-actions a {
        width: 100%;
        max-width: 300px;
    }

    .legal-page {
        padding: 60px 30px;
    }

    .benefits-list {
        flex-direction: column;
    }

    .benefit {
        flex: 0 0 100%;
    }
}
