* {
    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;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.main-nav a:hover {
    color: #3498db;
}

.hero {
    display: flex;
    flex-direction: column-reverse;
    background-color: #f8f9fa;
}

.hero-content {
    padding: 60px 20px;
}

.hero-text {
    max-width: 1200px;
    margin: 0 auto;
}

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

.hero p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #4a5568;
    line-height: 1.7;
}

.hero-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    font-size: 16px;
}

.cta-button:hover {
    background-color: #2980b9;
}

.features-grid {
    padding: 80px 0;
}

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

.feature-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.feature-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e9ecef;
}

.feature-card h3 {
    padding: 25px 25px 15px;
    font-size: 22px;
    color: #2c3e50;
}

.feature-card p {
    padding: 0 25px 25px;
    color: #4a5568;
    line-height: 1.7;
}

.approach-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.approach-section .container {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.approach-text {
    flex: 1;
    min-width: 300px;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.approach-image {
    flex: 1;
    min-width: 300px;
}

.approach-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

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

.courses-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #4a5568;
    font-size: 18px;
    line-height: 1.7;
}

.courses-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.course-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.course-card:hover {
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(52,152,219,0.15);
}

.course-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.course-card p {
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

.course-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.duration {
    color: #6c757d;
    font-size: 15px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.select-course {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-course:hover {
    background-color: #2980b9;
}

.form-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

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

.form-wrapper > p {
    margin-bottom: 35px;
    color: #4a5568;
    line-height: 1.7;
}

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

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

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

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

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #2980b9;
}

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

.disclaimer {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.8;
    font-style: italic;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

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

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

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

.footer-column p {
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e9ecef;
    padding: 25px;
    box-shadow: 0 -2px 10px 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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 15px;
}

.cookie-btn.accept {
    background-color: #3498db;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #2980b9;
}

.cookie-btn.reject {
    background-color: #e9ecef;
    color: #2c3e50;
}

.cookie-btn.reject:hover {
    background-color: #ced4da;
}

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    color: #ecf0f1;
}

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

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.mission-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.mission-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.mission-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.mission-card p {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
    font-size: 17px;
}

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

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #e9ecef;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.team-member p {
    color: #4a5568;
    line-height: 1.7;
}

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

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

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

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p {
    color: #4a5568;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #4a5568;
}

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

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

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

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

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

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-info {
    flex: 1;
    min-width: 300px;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-info p {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
    font-size: 17px;
}

.service-info ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-info li {
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.7;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.price-label {
    color: #6c757d;
    font-size: 15px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
}

.service-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #2980b9;
}

.additional-info {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.additional-info h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.faq-item {
    flex: 1;
    min-width: 300px;
}

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

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

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

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

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

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

.contact-info-block > p {
    margin-bottom: 40px;
    color: #4a5568;
    line-height: 1.8;
    font-size: 17px;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-detail p {
    color: #4a5568;
    line-height: 1.7;
}

.note {
    font-size: 14px;
    color: #6c757d;
    margin-top: 5px;
}

.response-info {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.response-info p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-image-block {
    flex: 1;
    min-width: 300px;
}

.contact-image-block img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.map-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.map-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.map-section p {
    margin-bottom: 30px;
    color: #4a5568;
    line-height: 1.8;
}

.map-placeholder {
    height: 400px;
    background-color: #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 18px;
}

.quick-start {
    padding: 80px 0;
    text-align: center;
}

.quick-start h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.quick-start p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #4a5568;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

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

.thanks-message {
    font-size: 18px;
    margin-bottom: 50px;
    color: #4a5568;
    line-height: 1.7;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps li {
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.8;
    font-size: 17px;
}

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

.thanks-info p {
    color: #4a5568;
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #e9ecef;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #ced4da;
}

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

.legal-page .container {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.updated {
    color: #6c757d;
    margin-bottom: 40px;
    font-size: 15px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-page li {
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.7;
}

.external-link {
    color: #3498db;
    word-break: break-all;
}

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

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

    .main-nav {
        gap: 20px;
    }

    .courses-section h2,
    .team-section h2,
    .values-section h2,
    .additional-info h2,
    .cta-section h2,
    .quick-start h2 {
        font-size: 32px;
    }

    .approach-text h2,
    .about-content h2,
    .contact-info-block h2,
    .map-section h2 {
        font-size: 28px;
    }

    .form-wrapper {
        padding: 35px 25px;
    }

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

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

    .cookie-btn {
        width: 100%;
    }

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

    .thanks-content h1 {
        font-size: 32px;
    }

    .legal-page h1 {
        font-size: 32px;
    }
}