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

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

.navbar {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link.active {
    color: #2563eb;
}

.ad-notice {
    font-size: 12px;
    color: #64748b;
    background-color: #f1f5f9;
    padding: 6px 12px;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-accept {
    background-color: #10b981;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #059669;
}

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

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

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(99, 102, 241, 0.85));
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 700px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 36px;
    max-width: 600px;
    opacity: 0.95;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2563eb;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #2563eb;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

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

.intro-grid {
    display: flex;
    gap: 32px;
    justify-content: space-between;
}

.intro-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1e293b;
}

.intro-card p {
    color: #64748b;
    font-size: 16px;
}

.services-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

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

.section-header p {
    font-size: 20px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 320px;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}

.service-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1e293b;
}

.service-content p {
    color: #475569;
    margin-bottom: 20px;
    flex: 1;
    font-size: 16px;
    line-height: 1.7;
}

.service-details {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.service-details span {
    font-size: 14px;
    color: #64748b;
}

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

.btn-select {
    padding: 14px 32px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #1d4ed8;
}

.btn-select.selected {
    background-color: #10b981;
}

.btn-select.selected:hover {
    background-color: #059669;
}

.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-intro {
    margin-bottom: 40px;
    text-align: center;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1e293b;
}

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

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

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

.form-group label {
    font-weight: 600;
    color: #334155;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group input[readonly] {
    background-color: #f8fafc;
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 16px;
}

.btn-submit:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background-color: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

.testimonials-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 64px;
    color: #1e293b;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: #1e293b;
    font-size: 16px;
}

.testimonial-author span {
    color: #94a3b8;
    font-size: 14px;
}

.footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 64px 0 32px;
}

.footer-grid {
    display: flex;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
}

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

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

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 12px;
    line-height: 1.6;
}

.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

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

.about-split {
    display: flex;
    gap: 64px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1e293b;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.about-image {
    width: 500px;
    height: 400px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.values-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 64px;
    color: #1e293b;
}

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

.value-card {
    flex: 1 1 calc(50% - 16px);
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1e293b;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

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

.method-section h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1e293b;
}

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

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.stats-grid {
    display: flex;
    gap: 48px;
    justify-content: center;
}

.stat-card {
    text-align: center;
    color: #ffffff;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

.cta-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

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

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1e293b;
}

.cta-content p {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 40px;
}

.services-detail-section {
    padding: 80px 0;
}

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.service-detail-image {
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}

.service-detail-content {
    padding: 48px;
}

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

.service-detail-content > p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 20px;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    padding: 24px;
    background-color: #f8fafc;
    border-radius: 8px;
}

.info-item {
    font-size: 15px;
    color: #475569;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.price-label {
    font-size: 18px;
    color: #64748b;
}

.price-value {
    font-size: 40px;
    font-weight: 700;
    color: #2563eb;
}

.benefits-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.benefits-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 64px;
    color: #1e293b;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.benefit-item {
    flex: 1 1 calc(50% - 16px);
    padding: 32px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e293b;
}

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

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

.contact-layout {
    display: flex;
    gap: 64px;
}

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

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
}

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

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

.contact-note {
    padding: 24px;
    background-color: #eff6ff;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

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

.contact-map-block h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1e293b;
}

.map-placeholder {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.map-description {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

.faq-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 16px);
    padding: 32px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

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

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

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1e293b;
}

.legal-text h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #334155;
}

.legal-text h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #475569;
}

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

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-text ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 10px;
}

.legal-text a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-text a:hover {
    color: #1d4ed8;
}

.thanks-section {
    padding: 120px 0;
    background-color: #f8fafc;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1e293b;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 48px;
}

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

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

.thanks-info ul {
    list-style: none;
}

.thanks-info ul li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.thanks-info ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 18px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.thanks-contact {
    padding: 24px;
    background-color: #eff6ff;
    border-radius: 8px;
}

.thanks-contact p {
    font-size: 15px;
    color: #475569;
    margin: 0;
}

@media (max-width: 1024px) {
    .services-grid {
        gap: 24px;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
        min-height: 240px;
    }

    .about-split {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
    }

    .contact-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .intro-grid {
        flex-direction: column;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 32px;
    }

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

    .value-card,
    .benefit-item,
    .faq-item {
        flex: 1 1 100%;
    }

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