* {
    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: #333;
    background-color: #fff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fb;
}

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

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    background-color: #e8edf2;
    overflow: hidden;
    position: relative;
}

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

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

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

.cta-secondary {
    display: inline-block;
    background-color: #34495e;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #2c3e50;
}

.trust-section {
    padding: 80px 20px;
    background-color: #fff;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    background-color: #f0f3f6;
    overflow: hidden;
    border-radius: 8px;
}

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

.split-content {
    flex: 1;
    padding: 20px;
}

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

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

.benefit-list {
    list-style: none;
    margin-top: 24px;
}

.benefit-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.courses-section {
    padding: 80px 20px;
    background-color: #f8f9fb;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

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

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

.courses-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.course-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

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

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

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

.course-info {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

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

.course-duration {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
}

.course-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 16px 0;
}

.select-course {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: auto;
    transition: background-color 0.3s;
}

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

.testimonials-section {
    padding: 80px 20px;
    background-color: #fff;
}

.testimonial {
    margin-bottom: 32px;
    padding: 24px;
    background-color: #f8f9fb;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial p {
    font-size: 17px;
    color: #555;
    font-style: italic;
    margin-bottom: 8px;
}

.testimonial-author {
    font-size: 15px;
    color: #888;
    font-style: normal;
    font-weight: 600;
}

.form-section {
    padding: 80px 20px;
    background-color: #f8f9fb;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 16px;
    text-align: center;
}

.form-intro {
    font-size: 17px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.enrollment-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    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-btn {
    width: 100%;
    background-color: #3498db;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p,
.footer-column a {
    font-size: 15px;
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 12px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: #fff;
}

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

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

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

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

.about-content .split-container {
    margin-bottom: 80px;
}

.team-section {
    max-width: 800px;
    margin: 80px auto 0;
    text-align: center;
}

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

.team-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
}

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

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

.service-detail .split-content h2 {
    font-size: 32px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin: 16px 0;
}

.service-detail ul {
    list-style: none;
    margin: 20px 0;
}

.service-detail ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-detail ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 20px;
}

.cta-section {
    padding: 80px 20px;
    background-color: #3498db;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

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

.cta-section .cta-primary {
    background-color: #fff;
    color: #3498db;
}

.cta-section .cta-primary:hover {
    background-color: #ecf0f1;
}

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

.contact-info {
    margin-top: 24px;
}

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

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

.contact-item p {
    font-size: 16px;
    color: #555;
}

.info-section {
    padding: 60px 20px;
    background-color: #f8f9fb;
}

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

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

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

.legal-page {
    padding: 40px 20px 80px;
    background-color: #fff;
}

.legal-page h1 {
    font-size: 40px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 20px;
    color: #34495e;
    margin-top: 20px;
    margin-bottom: 12px;
}

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

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

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2980b9;
}

.legal-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #888;
    font-style: italic;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: #f8f9fb;
}

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

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 24px;
}

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

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 24px;
}

.service-info {
    font-size: 17px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 32px;
}

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

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

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

    .split-container,
    .split-container.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .course-card {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        gap: 20px;
    }
}