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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-notice {
    background-color: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 36px;
    z-index: 999;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hero {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    padding: 60px 20px;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    max-width: 700px;
    background-color: #dbeafe;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.intro-cards {
    background-color: var(--bg-white);
    padding: 80px 0;
}

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

.info-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #f3f4f6;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #bfdbfe;
}

.info-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.info-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.services-overview {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    gap: 30px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
    background-color: #fef3c7;
}

.service-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-image {
    flex: 1;
    min-width: 350px;
    background-color: #dbeafe;
}

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

.service-info {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.select-service-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.select-service-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.02);
}

.form-section {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: #e0e7ff;
    font-weight: 600;
    color: var(--primary-color);
}

.submit-btn {
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #d97706;
    transform: scale(1.02);
}

.benefits {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.benefit-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    background-color: #fef2f2;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 50px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--bg-white);
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
    font-size: 0.85rem;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: var(--bg-white);
}

.cookie-btn.reject {
    background-color: #6b7280;
    color: var(--bg-white);
}

.page-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.about-main {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.about-main img {
    flex: 1;
    min-width: 400px;
    max-width: 600px;
    border-radius: 12px;
    object-fit: cover;
    background-color: #dbeafe;
}

.about-text {
    flex: 1;
    min-width: 350px;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.values-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    border-top: 3px solid var(--accent-color);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.approach-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.approach-section p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    padding: 50px 0;
    background-color: var(--bg-light);
    border-radius: 12px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

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

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

.service-content {
    flex: 1;
    min-width: 350px;
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-dark);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.service-meta span {
    background-color: var(--bg-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.duration,
.level {
    font-weight: 600;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.service-visual {
    flex: 1;
    min-width: 400px;
    max-width: 600px;
}

.service-visual img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    background-color: #dbeafe;
}

.cta-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button-large {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button-large:hover {
    background-color: #d97706;
    transform: scale(1.05);
}

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

.contact-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info {
    flex: 1;
    min-width: 350px;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.info-block p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    min-width: 350px;
}

.contact-visual img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 25px;
    object-fit: cover;
    background-color: #dbeafe;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.contact-note h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-note p {
    color: var(--text-light);
    line-height: 1.6;
}

.legal-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-section p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-section ul {
    margin: 15px 0 15px 30px;
    color: var(--text-light);
}

.legal-section ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-content {
    background-color: var(--bg-white);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    color: var(--text-light);
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.last-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

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

.thanks-content .container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.thanks-message {
    flex: 1;
    min-width: 400px;
}

.thanks-message h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--success-color);
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.6;
}

.confirmation-box {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid var(--success-color);
}

.confirmation-box h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.next-steps {
    list-style: none;
}

.next-steps li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.selected-service-info {
    margin-bottom: 30px;
}

.selected-course {
    background-color: #ecfdf5;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #6ee7b7;
}

.selected-course h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.course-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--success-color);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: var(--border-color);
    transform: scale(1.05);
}

.contact-support {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-support p {
    margin: 0;
    color: var(--text-light);
}

.thanks-visual {
    flex: 1;
    max-width: 500px;
}

.thanks-visual img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    background-color: #dbeafe;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

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

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

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

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

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

    .service-item.reverse {
        flex-direction: column;
    }

    .nav-menu {
        gap: 15px;
        font-size: 0.9rem;
    }

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

    .thanks-content .container {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}