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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --max-width: 1200px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: var(--spacing-md);
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.cookie-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--primary-color);
    color: white;
}

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

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-sm) var(--spacing-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--primary-color);
}

.split-hero {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.split-left {
    padding: var(--spacing-xl) var(--spacing-md);
    justify-content: center;
    background: var(--bg-light);
}

.split-right {
    min-height: 400px;
}

.hero-content {
    max-width: 600px;
}

.split-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.split-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

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

.cta-primary,
.cta-outline,
.btn-secondary,
.btn-submit,
.cta-primary-large {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary,
.btn-submit {
    background: var(--primary-color);
    color: white;
}

.cta-primary:hover,
.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-outline,
.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.cta-primary-large {
    background: var(--primary-color);
    color: white;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.cta-primary-large:hover {
    background: var(--secondary-color);
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow:after {
    content: '→';
    transition: transform 0.3s ease;
}

.link-arrow:hover:after {
    transform: translateX(4px);
}

.split-section {
    display: flex;
    flex-direction: column;
}

.split-section .split-left,
.split-section .split-right {
    padding: var(--spacing-xl) var(--spacing-md);
}

.split-section.reverse {
    flex-direction: column-reverse;
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.content-block p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    padding: 0 var(--spacing-md);
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.programs-preview {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-light);
}

.program-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: var(--max-width);
    margin: 0 auto var(--spacing-lg);
}

.program-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.program-visual img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.program-info {
    padding: var(--spacing-md);
}

.program-info h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

.program-info p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.center-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.outcomes-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--primary-color);
    color: white;
}

.outcomes-container {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.outcomes-container h2 {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-lg);
}

.stats-row {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonial-section {
    padding: var(--spacing-xl) var(--spacing-md);
}

.split-container {
    display: flex;
    flex-direction: column;
    max-width: var(--max-width);
    margin: 0 auto;
}

.testimonial-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.testimonial-content {
    padding: var(--spacing-lg) 0;
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.testimonial-content cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

.approach-section {
    background: var(--bg-light);
}

.form-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-light);
}

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

.form-intro {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.form-intro p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.contact-form {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.125rem;
    font-size: 1.05rem;
}

.main-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: var(--spacing-sm);
}

.footer-column p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-column a {
    color: rgba(255,255,255,0.8);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.page-hero {
    background: var(--bg-light);
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.values-section {
    padding: var(--spacing-xl) var(--spacing-md);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: var(--max-width);
    margin: 0 auto;
}

.value-card {
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.approach-detail {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-white);
}

.detail-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.detail-container h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.step-item {
    padding: var(--spacing-lg);
    border-left: 4px solid var(--primary-color);
    background: var(--bg-light);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

.step-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-intro {
    padding: var(--spacing-xl) var(--spacing-md);
}

.intro-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.split-layout {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.intro-text p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-size: 1.05rem;
}

.intro-image img {
    border-radius: 8px;
}

.services-list {
    background: var(--bg-light);
    padding: var(--spacing-xl) var(--spacing-md);
}

.service-item {
    max-width: var(--max-width);
    margin: 0 auto var(--spacing-xl);
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.split-service {
    display: flex;
    flex-direction: column;
}

.service-image {
    flex: 1;
}

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

.service-content {
    flex: 1;
    padding: var(--spacing-lg);
}

.service-content h2 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
}

.service-content > p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.service-pricing {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: 6px;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.duration {
    color: var(--text-light);
    font-size: 0.95rem;
}

.what-included {
    padding: var(--spacing-xl) var(--spacing-md);
}

.included-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.included-container h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.included-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.included-item {
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: 6px;
}

.included-item h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
}

.included-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-light);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    padding: var(--spacing-xl) var(--spacing-md);
}

.contact-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
}

.info-block {
    margin-bottom: var(--spacing-lg);
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.info-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-image {
    margin-top: var(--spacing-lg);
}

.contact-image img {
    border-radius: 8px;
}

.directions-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-light);
}

.directions-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.directions-container h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
}

.directions-content h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

.directions-content p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.transport-list {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.transport-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.directions-image {
    margin-top: var(--spacing-lg);
}

.directions-image img {
    border-radius: 8px;
}

.faq-section {
    padding: var(--spacing-xl) var(--spacing-md);
}

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

.faq-container h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: var(--spacing-xl) var(--spacing-md);
    min-height: 60vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--success-color);
}

.thanks-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.thanks-details {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: 8px;
    margin-bottom: var(--spacing-lg);
    text-align: left;
}

.thanks-details p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.thanks-details ul {
    margin-left: var(--spacing-md);
    color: var(--text-light);
}

.thanks-details li {
    margin-bottom: var(--spacing-xs);
}

.selected-service {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.next-steps {
    margin: var(--spacing-xl) 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-lg);
}

.step-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.step-card {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 6px;
    text-align: left;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
}

.step-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.contact-reminder {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: 6px;
}

.contact-reminder p {
    color: var(--text-light);
    margin: 0;
}

.legal-page {
    padding: var(--spacing-xl) var(--spacing-md);
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
}

.legal-container p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.legal-container ul {
    margin: var(--spacing-sm) 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-light);
}

.legal-container li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    margin: var(--spacing-md) 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: var(--spacing-sm);
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav-menu {
        gap: var(--spacing-lg);
    }

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

    .split-hero .split-left {
        padding: var(--spacing-xl);
    }

    .split-hero h1 {
        font-size: 3.5rem;
    }

    .split-section {
        flex-direction: row;
    }

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

    .program-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .program-card {
        flex: 1;
        min-width: 300px;
    }

    .stats-row {
        flex-direction: row;
        justify-content: space-around;
    }

    .split-container {
        flex-direction: row;
        gap: var(--spacing-xl);
        align-items: center;
    }

    .split-container .split-left,
    .split-container .split-right {
        flex: 1;
    }

    .testimonial-image img {
        height: 100%;
        min-height: 400px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1;
        min-width: 280px;
    }

    .split-layout {
        flex-direction: row;
        align-items: center;
    }

    .split-layout .intro-text,
    .split-layout .intro-image {
        flex: 1;
    }

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

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

    .service-image img {
        height: 100%;
        min-height: 450px;
    }

    .included-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .included-item {
        flex: 1;
        min-width: 250px;
    }

    .step-cards {
        flex-direction: row;
    }

    .step-card {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .split-hero h1 {
        font-size: 4rem;
    }

    .approach-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-item {
        flex: 1;
        min-width: 250px;
    }
}
