* {
    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: #2c3e50;
    background-color: #ffffff;
}

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

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

.main-header {
    background: #1a2332;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.ad-notice {
    font-size: 11px;
    color: #94a3b8;
    padding: 4px 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #60a5fa;
}

.hero-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1501167786227-4cba60f6d58f?w=1400&q=80');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-color: #334155;
}

.hero-overlay {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.92), rgba(51, 65, 85, 0.88));
    padding: 100px 0;
}

.hero-text {
    max-width: 700px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #cbd5e1;
    line-height: 1.5;
}

.intro-block {
    padding: 80px 0;
    background: #f8fafc;
}

.intro-lead {
    font-size: 22px;
    line-height: 1.7;
    color: #475569;
    text-align: center;
}

.why-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1e293b;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #475569;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.services-preview {
    padding: 100px 0;
    background: #f1f5f9;
}

.section-title {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-icon {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #1e293b;
}

.service-card p {
    margin: 0 20px 15px;
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin: 15px 20px;
}

.btn-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 24px;
    background: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #2563eb;
}

.approach-section {
    padding: 100px 0;
    background: #ffffff;
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1e293b;
}

.approach-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #475569;
    line-height: 1.7;
}

.testimonials-section {
    padding: 100px 0;
    background: #1e293b;
    color: #ffffff;
}

.testimonials-section .section-title {
    color: #ffffff;
}

.testimonials-layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #60a5fa;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: #e2e8f0;
}

.testimonial-author {
    font-weight: 600;
    color: #60a5fa;
}

.cta-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1e293b;
}

.form-intro {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 14px 32px;
    background: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #2563eb;
}

.disclaimer-section {
    padding: 60px 0;
    background: #fef3c7;
}

.disclaimer-text {
    font-size: 14px;
    color: #78350f;
    line-height: 1.7;
}

.main-footer {
    background: #1a2332;
    color: #cbd5e1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    color: #e2e8f0;
    font-size: 14px;
    flex: 1 1 400px;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie {
    background: #3b82f6;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #2563eb;
}

.btn-cookie-alt {
    background: transparent;
    color: #cbd5e1;
    border: 2px solid #475569;
}

.btn-cookie-alt:hover {
    background: #475569;
}

.page-hero {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: #cbd5e1;
}

.content-section {
    padding: 80px 0;
}

.content-layout {
    display: flex;
    gap: 60px;
}

.content-main {
    flex: 1;
}

.content-main h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #1e293b;
}

.content-main h2:first-of-type {
    margin-top: 0;
}

.content-main p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.7;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    object-fit: cover;
}

.cta-section {
    padding: 80px 0;
    background: #f1f5f9;
}

.cta-box {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-large {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #2563eb;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-large:hover {
    transform: scale(1.05);
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.service-detail-layout.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1e293b;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #334155;
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #64748b;
    line-height: 1.7;
}

.service-detail-content ul {
    margin: 15px 0 20px 20px;
    color: #475569;
}

.service-detail-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.btn-enroll {
    display: inline-block;
    padding: 12px 32px;
    background: #3b82f6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn-enroll:hover {
    background: #2563eb;
}

.pricing-info {
    padding: 60px 0;
    background: #f8fafc;
}

.pricing-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1e293b;
}

.pricing-info p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #475569;
    line-height: 1.7;
}

.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1.5;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e293b;
}

.contact-info-block p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #475569;
    line-height: 1.7;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1e293b;
}

.contact-item p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.contact-additional h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #1e293b;
}

.contact-image-block {
    flex: 1;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.directions-section {
    padding: 60px 0;
    background: #f8fafc;
}

.directions-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1e293b;
}

.directions-section p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #475569;
    line-height: 1.7;
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #f8fafc;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1e293b;
}

.faq-item p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

.legal-page {
    padding: 80px 0;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #1e293b;
}

.legal-updated {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #1e293b;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #334155;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.7;
}

.legal-page ul {
    margin: 15px 0 20px 25px;
    color: #475569;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-page a {
    color: #3b82f6;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookies-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

.cookies-table td {
    color: #475569;
}

.thanks-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

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

.thanks-content h1 {
    font-size: 42px;
    color: #166534;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: #15803d;
    margin-bottom: 40px;
}

.thanks-details {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.thanks-info {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.thanks-info h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1e293b;
}

.thanks-info p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #475569;
    line-height: 1.7;
}

.thanks-info ul {
    margin: 15px 0 20px 25px;
    color: #475569;
}

.thanks-info li {
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-primary {
    background: #16a34a;
    color: #ffffff;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-secondary {
    background: #ffffff;
    color: #16a34a;
    border: 2px solid #16a34a;
}

.btn-secondary:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .split-content,
    .service-detail-layout,
    .contact-layout {
        flex-direction: column;
    }

    .service-detail-layout.reverse {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

    .faq-item {
        flex: 1 1 100%;
    }

    .main-nav {
        flex-basis: 100%;
        justify-content: center;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .cta-box {
        padding: 40px 20px;
    }
}