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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2d3436;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f0f3f7;
    color: #636e72;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #dfe6e9;
}

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

.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: #0984e3;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-menu a:hover {
    color: #0984e3;
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
    gap: 60px;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

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

.hero-content p {
    font-size: 19px;
    color: #636e72;
    margin-bottom: 32px;
    line-height: 1.6;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #0984e3;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #0770c4;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #0984e3;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #0984e3;
    transition: background-color 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background-color: #0984e3;
    color: #ffffff;
}

.intro-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 60px;
}

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

.intro-image {
    flex: 1;
    background-color: #f0f3f7;
}

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

.intro-content {
    flex: 1;
    padding: 40px;
}

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

.intro-content p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 18px;
}

.method-section {
    background-color: #f8f9fa;
    padding: 80px 30px;
}

.method-section h2 {
    text-align: center;
    font-size: 38px;
    color: #2d3436;
    margin-bottom: 50px;
    font-weight: 700;
}

.method-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.method-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.method-card h3 {
    font-size: 22px;
    color: #2d3436;
    margin-bottom: 16px;
    font-weight: 600;
}

.method-card p {
    font-size: 16px;
    color: #636e72;
    line-height: 1.7;
}

.courses-split {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 60px;
}

.courses-content {
    flex: 1;
    padding: 40px 0;
}

.courses-content h2 {
    font-size: 38px;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 700;
}

.courses-content > p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 40px;
}

.course-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #0984e3;
}

.course-item h3 {
    font-size: 22px;
    color: #2d3436;
    margin-bottom: 12px;
    font-weight: 600;
}

.course-item p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 16px;
}

.price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #0984e3;
    margin-bottom: 16px;
}

.select-service {
    background-color: #0984e3;
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #0770c4;
}

.courses-image {
    flex: 1;
    background-color: #f0f3f7;
}

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

.testimonials-section {
    background-color: #2d3436;
    color: #ffffff;
    padding: 80px 30px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    font-weight: 700;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 8px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #74b9ff;
}

.form-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 60px;
}

.form-image {
    flex: 1;
    background-color: #f0f3f7;
}

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

.form-content {
    flex: 1;
    padding: 40px;
}

.form-content h2 {
    font-size: 36px;
    color: #2d3436;
    margin-bottom: 32px;
    font-weight: 700;
}

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

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

.form-group input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #0984e3;
}

.form-group input[readonly] {
    background-color: #f0f3f7;
    color: #636e72;
}

.final-cta-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 60px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.final-cta-split.reverse {
    flex-direction: row-reverse;
}

.final-content {
    flex: 1;
    padding: 60px;
}

.final-content h2 {
    font-size: 36px;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-content p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 28px;
}

.final-image {
    flex: 1;
    background-color: #f0f3f7;
}

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

.main-footer {
    background-color: #2d3436;
    color: #b2bec3;
    padding: 60px 30px 20px;
}

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #b2bec3;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #b2bec3;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #b2bec3;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    color: #ffffff;
    padding: 24px 30px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    z-index: 2000;
    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;
    min-width: 300px;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.cookie-btn.accept {
    background-color: #0984e3;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #0770c4;
}

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

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

.page-hero {
    background-color: #f8f9fa;
    padding: 80px 30px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #2d3436;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-hero p {
    font-size: 19px;
    color: #636e72;
    max-width: 700px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 60px;
}

.about-image {
    flex: 1;
    background-color: #f0f3f7;
}

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

.about-content {
    flex: 1;
    padding: 40px;
}

.about-content h2 {
    font-size: 36px;
    color: #2d3436;
    margin-bottom: 24px;
    font-weight: 700;
}

.about-content p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 18px;
}

.mission-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 60px;
    background-color: #f8f9fa;
}

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

.mission-content {
    flex: 1;
    padding: 60px;
}

.mission-content h2 {
    font-size: 36px;
    color: #2d3436;
    margin-bottom: 24px;
    font-weight: 700;
}

.mission-content p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 18px;
}

.mission-image {
    flex: 1;
    background-color: #f0f3f7;
}

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

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

.team-section h2 {
    font-size: 38px;
    color: #2d3436;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 40px 32px;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 22px;
    color: #2d3436;
    margin-bottom: 16px;
    font-weight: 600;
}

.team-member p {
    font-size: 16px;
    color: #636e72;
    line-height: 1.7;
}

.values-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 60px;
}

.values-content {
    flex: 1;
    padding: 40px;
}

.values-content h2 {
    font-size: 36px;
    color: #2d3436;
    margin-bottom: 32px;
    font-weight: 700;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 20px;
    padding-left: 28px;
    position: relative;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0984e3;
    font-weight: 700;
    font-size: 20px;
}

.values-image {
    flex: 1;
    background-color: #f0f3f7;
}

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

.cta-section {
    background-color: #f8f9fa;
    padding: 80px 30px;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-intro {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 30px;
}

.intro-container {
    background-color: #f8f9fa;
    padding: 50px 60px;
    border-radius: 12px;
}

.intro-container h2 {
    font-size: 32px;
    color: #2d3436;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-container p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 18px;
    line-height: 1.7;
}

.course-detail-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 30px;
    gap: 60px;
}

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

.course-detail-content {
    flex: 1;
    padding: 40px;
}

.course-detail-content h2 {
    font-size: 32px;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 700;
}

.course-detail-content p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 24px;
}

.course-detail-content h3 {
    font-size: 20px;
    color: #2d3436;
    margin-bottom: 16px;
    margin-top: 24px;
    font-weight: 600;
}

.course-detail-content ul {
    margin-bottom: 28px;
    padding-left: 24px;
}

.course-detail-content ul li {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 10px;
    line-height: 1.6;
}

.price-large {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #0984e3;
    margin-bottom: 24px;
}

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

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

.enrollment-section {
    background-color: #0984e3;
    color: #ffffff;
    padding: 80px 30px;
    text-align: center;
}

.enrollment-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.enrollment-section p {
    font-size: 17px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.enrollment-section .cta-primary {
    background-color: #ffffff;
    color: #0984e3;
}

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

.contact-split {
    display: flex;
    align-items: flex-start;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 60px;
}

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

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

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

.contact-item h3 {
    font-size: 20px;
    color: #2d3436;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-item p {
    font-size: 17px;
    color: #636e72;
    line-height: 1.7;
}

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

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

.location-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 30px;
}

.location-section h2 {
    font-size: 32px;
    color: #2d3436;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.faq-section {
    background-color: #f8f9fa;
    padding: 80px 30px;
}

.faq-section h2 {
    font-size: 38px;
    color: #2d3436;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 20px;
    color: #2d3436;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.thanks-hero {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 60px;
}

.thanks-content {
    flex: 1;
    padding: 40px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #00b894;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.thanks-info p {
    margin: 0;
    font-size: 16px;
}

.thanks-image {
    flex: 1;
    background-color: #f0f3f7;
}

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

.next-steps {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
}

.next-steps h2 {
    font-size: 38px;
    color: #2d3436;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

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

.step {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 40px 32px;
    border-radius: 8px;
}

.step h3 {
    font-size: 22px;
    color: #0984e3;
    margin-bottom: 16px;
    font-weight: 600;
}

.step p {
    font-size: 16px;
    color: #636e72;
    line-height: 1.7;
}

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

.legal-page h1 {
    font-size: 42px;
    color: #2d3436;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.legal-page h3 {
    font-size: 22px;
    color: #2d3436;
    margin-top: 28px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

.legal-page ul li {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-page a {
    color: #0984e3;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #0770c4;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .courses-split,
    .form-split,
    .final-cta-split,
    .about-split,
    .mission-split,
    .values-split,
    .course-detail-split,
    .contact-split,
    .thanks-hero {
        flex-direction: column;
        gap: 40px;
    }

    .intro-split.reverse,
    .mission-split.reverse,
    .final-cta-split.reverse,
    .course-detail-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .courses-content,
    .form-content,
    .final-content,
    .about-content,
    .mission-content,
    .values-content,
    .course-detail-content,
    .contact-info,
    .thanks-content {
        padding: 20px 0;
    }

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

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

    .method-grid,
    .testimonials-container,
    .team-grid,
    .steps-container {
        flex-direction: column;
    }

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