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

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

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.hero-split {
    display: flex;
    min-height: 580px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background-color: #e0e7ff;
}

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

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.split-reverse {
    display: flex;
    padding: 80px 0;
    background-color: #f8f9fa;
}

.split-standard {
    display: flex;
    padding: 80px 0;
}

.split-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.split-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.text-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px;
    display: inline-block;
}

.text-link:hover {
    text-decoration: underline;
}

.courses-section {
    padding: 80px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header p {
    font-size: 18px;
    color: #6c757d;
}

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

.course-card {
    flex: 1;
    min-width: 340px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.course-card:hover {
    transform: translateY(-8px);
}

.course-image {
    width: 100%;
    height: 240px;
    background-color: #e9ecef;
}

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

.course-info {
    padding: 28px;
}

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

.course-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.course-price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

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

.select-course:hover {
    background-color: #5568d3;
}

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

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.form-visual {
    flex: 1;
    padding: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-visual h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.selected-price {
    font-size: 32px;
    font-weight: 700;
    margin-top: 24px;
}

.form-wrapper {
    flex: 1;
    padding: 60px;
}

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

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

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

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

.submit-button {
    width: 100%;
    background-color: #667eea;
    color: #ffffff;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #5568d3;
}

.testimonials-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.testimonial {
    flex: 1;
    background-color: #f8f9fa;
    padding: 36px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #6c757d;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 14px;
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #cbd5e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

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

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

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

.cookie-accept {
    background-color: #667eea;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #5568d3;
}

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

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

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 24px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.values-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

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

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

.cta-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

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

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.services-intro {
    padding: 60px 24px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.intro-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.courses-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.course-detail-card {
    margin-bottom: 60px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.course-detail-split {
    display: flex;
}

.course-detail-card.reverse .course-detail-split {
    flex-direction: row-reverse;
}

.course-detail-content {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.course-detail-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.course-detail-content ul {
    list-style: none;
    margin-bottom: 28px;
}

.course-detail-content ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #2c3e50;
}

.course-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 24px;
}

.course-detail-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.info-section {
    padding: 80px 24px;
    background-color: #f8f9fa;
}

.info-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
}

.info-item {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.info-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-section {
    padding: 60px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-split {
    display: flex;
    gap: 60px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-info {
    flex: 1;
    padding: 48px;
}

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

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

.contact-detail h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #667eea;
}

.contact-detail p {
    font-size: 16px;
    color: #2c3e50;
    line-height: 1.7;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-note a {
    color: #667eea;
    text-decoration: none;
}

.contact-note a:hover {
    text-decoration: underline;
}

.contact-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.location-section {
    padding: 60px 24px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.location-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 24px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

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

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

.thanks-container > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 48px;
}

.thanks-next h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
}

.step {
    flex: 1;
    padding: 28px;
    background-color: #f8f9fa;
    border-radius: 12px;
    text-align: left;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step p {
    font-size: 16px;
    color: #2c3e50;
    line-height: 1.6;
}

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

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

.secondary-button:hover {
    background-color: #667eea;
    color: #ffffff;
}

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

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

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

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

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

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

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

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

.legal-page strong {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .hero-split,
    .split-reverse,
    .split-standard,
    .contact-split,
    .course-detail-split {
        flex-direction: column;
    }

    .courses-grid,
    .testimonials-grid,
    .values-grid,
    .info-grid,
    .next-steps {
        flex-direction: column;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 36px;
    }

    .form-container-split {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }
}