* {
    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.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-right a {
    color: #5a6c7d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 800;
}

.hero-content p {
    font-size: 19px;
    color: #5a6c7d;
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.7;
}

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

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

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

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

.intro-split {
    display: flex;
    align-items: center;
}

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

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

.intro-text {
    flex: 1;
    padding: 80px 60px;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
}

.intro-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.8;
}

.services-grid {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.section-header-center h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 700;
}

.section-header-center p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 680px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    margin-bottom: 60px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

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

.service-visual {
    flex: 1;
    background-color: #e8ecef;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 700;
}

.service-info p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: #27ae60;
}

.duration {
    font-size: 15px;
    color: #7f8c8d;
}

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 60px;
    background-color: #ecf0f1;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a252f;
    text-align: center;
    font-weight: 700;
}

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

.selected-badge {
    background-color: #d5f4e6;
    border: 2px solid #27ae60;
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    text-align: center;
}

.selected-badge strong {
    color: #1a252f;
}

.selected-badge span {
    color: #27ae60;
    font-weight: 600;
}

.booking-form {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e6ed;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.why-us-split {
    display: flex;
    align-items: center;
}

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

.why-content h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a252f;
    font-weight: 700;
}

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

.benefits-list li {
    padding: 16px 0 16px 40px;
    position: relative;
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.why-image {
    flex: 1;
    background-color: #e8ecef;
}

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

.footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 60px 20px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    color: #95a5a6;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-section a {
    display: block;
    color: #95a5a6;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    background-color: rgba(255,255,255,0.05);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

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

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

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

.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: 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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

.btn-cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

.btn-cookie-reject:hover {
    background-color: #6c7a7b;
    transform: translateY(-2px);
}

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

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

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

.about-split {
    display: flex;
    align-items: center;
}

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

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

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

.about-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
}

.about-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.8;
}

.mission-split {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
}

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

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

.mission-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
}

.mission-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.8;
}

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

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

.values-section {
    padding: 100px 60px;
}

.values-section h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    max-width: 480px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a252f;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.team-intro {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.team-text {
    max-width: 880px;
    margin: 0 auto;
}

.team-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
}

.team-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.8;
}

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

.service-detail-card {
    display: flex;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8ecef;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 700;
}

.price-tag {
    font-size: 36px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
    font-weight: 700;
}

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

.service-detail-content ul li {
    padding: 8px 0 8px 32px;
    position: relative;
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.service-detail-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

.program-info p {
    margin-bottom: 8px;
    font-size: 15px;
}

.cta-section-centered {
    padding: 100px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 700;
}

.cta-section-centered p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 36px;
}

.contact-split {
    display: flex;
    align-items: stretch;
}

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

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a252f;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a252f;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
}

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

.contact-note p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: #e8ecef;
}

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

.location-info {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.location-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a252f;
    font-weight: 700;
}

.location-split {
    display: flex;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-text,
.location-directions {
    flex: 1;
}

.location-text h3,
.location-directions h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 700;
}

.location-text p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 24px;
    line-height: 1.8;
}

.location-directions ul {
    list-style: none;
}

.location-directions ul li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.location-directions ul li::before {
    content: '📍';
    position: absolute;
    left: 0;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.thanks-content {
    max-width: 720px;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 800;
}

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #d5f4e6;
    border: 2px solid #27ae60;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-confirmation p {
    font-size: 16px;
    color: #1a252f;
    margin: 0;
}

.service-confirmation strong {
    font-weight: 700;
}

.service-confirmation span {
    color: #27ae60;
    font-weight: 600;
}

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

.next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.next-steps ol {
    margin-left: 20px;
}

.next-steps ol li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 800;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

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

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

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .why-us-split,
    .about-split,
    .mission-split,
    .service-detail-card,
    .contact-split,
    .location-split {
        flex-direction: column;
    }

    .service-card-split.reverse,
    .mission-split.reverse,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .nav-split {
        padding: 20px 30px;
    }

    .hero-content,
    .intro-text,
    .service-info,
    .why-content,
    .about-content,
    .mission-content,
    .service-detail-content,
    .contact-info {
        padding: 60px 30px;
    }

    .services-grid,
    .form-section,
    .values-section,
    .team-intro,
    .services-detailed,
    .cta-section-centered,
    .location-info {
        padding: 60px 30px;
    }

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

    .section-header-center h2 {
        font-size: 34px;
    }

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

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

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

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .nav-right {
        flex-wrap: wrap;
        gap: 16px;
    }

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

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

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