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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #d4a574;
    --accent-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-label {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 10px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-white);
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    border: 2px solid var(--secondary-color);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.intro-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.content-box {
    flex: 1;
}

.content-box h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.content-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.content-box p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.image-box {
    flex: 1;
    background-color: var(--border-color);
}

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

.services-showcase {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.services-showcase h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 24px 0;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.duration {
    font-size: 14px;
    color: var(--text-light);
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-select {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background-color: transparent;
    color: var(--primary-color);
}

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

.testimonial-box {
    flex: 1;
    padding: 40px;
    background-color: var(--bg-white);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-box blockquote {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-box cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

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

.form-container {
    flex: 1;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.enroll-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.values-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.value-item {
    flex: 1;
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

.footer-col a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

.disclaimer-text {
    margin-top: 16px;
    font-size: 12px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    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;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.btn-accept:hover {
    background-color: #c49563;
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-reject:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.page-hero {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

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

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

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

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-info h3 {
    font-size: 22px;
    margin: 24px 0 16px;
    color: var(--accent-color);
}

.service-info ul {
    list-style: none;
    padding: 0;
}

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

.service-info ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 32px 0;
    padding: 20px 0;
    border-top: 2px solid var(--border-color);
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-image {
    flex: 1;
    background-color: var(--border-color);
}

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

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

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

.enrollment-cta p {
    font-size: 20px;
    margin-bottom: 32px;
}

.about-story {
    padding: 100px 0;
}

.team-approach {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.team-approach h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.approach-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.approach-item {
    flex: 1;
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
}

.values-detailed {
    padding: 100px 0;
}

.philosophy-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.philosophy-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.philosophy-blocks {
    display: flex;
    gap: 40px;
}

.philosophy-item {
    flex: 1;
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.philosophy-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
}

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

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

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
}

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

.contact-details {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
}

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

.faq-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    margin: 40px 0;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

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

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

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    color: var(--accent-color);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .main-nav ul {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-split {
        flex-direction: column;
    }

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

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

    .split-content,
    .split-content.reverse {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .values-grid,
    .approach-grid,
    .philosophy-blocks {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .faq-item {
        flex: 1 1 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }
}