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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a90a4;
    --accent-color: #7eb9d1;
    --dark-text: #1a2930;
    --light-text: #5a6c75;
    --bg-light: #f8fafb;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #4caf50;
    --error-color: #f44336;
}

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

.navbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-text);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.btn-cookie.accept:hover {
    background-color: #45a049;
}

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

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

.hero-split,
.intro-split,
.services-split,
.approach-split,
.cta-split,
.info-split,
.about-split,
.mission-split,
.story-split,
.team-split,
.services-intro-split,
.booking-split,
.contact-split,
.contact-info-split,
.quick-action-split {
    padding: 4rem 2rem;
}

.intro-split,
.approach-split,
.mission-split,
.team-split,
.contact-info-split {
    background-color: var(--bg-light);
}

.split-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

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

.split-text,
.split-image {
    flex: 1;
    min-width: 0;
}

.split-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    font-weight: 800;
}

.split-text h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: var(--dark-text);
    font-weight: 700;
}

.split-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.split-text p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
    margin-right: 1rem;
}

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

.btn-primary:hover {
    background-color: #234a5f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 124, 0.3);
}

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

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

.stats-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    color: white;
    flex: 1;
    min-width: 250px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.stat-card p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.service-highlight {
    background-color: var(--bg-light);
    padding: 1.8rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-highlight h3 {
    margin-bottom: 0.8rem;
}

.price-tag {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.8rem;
}

.approach-list,
.benefit-list {
    list-style: none;
    margin: 1.5rem 0;
}

.approach-list li,
.benefit-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--light-text);
}

.approach-list li:before,
.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.process-list {
    list-style: none;
    counter-reset: process-counter;
    margin: 1.5rem 0;
}

.process-list li {
    counter-increment: process-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--light-text);
}

.process-list li:before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0.8rem;
    background-color: var(--primary-color);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.testimonial-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.testimonial-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.inline-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px 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);
}

.footer {
    background-color: var(--dark-text);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.thanks-container p {
    font-size: 1.15rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.values-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-text);
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.cta-container h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.cta-container .btn-primary:hover {
    background-color: var(--bg-light);
}

.cta-container .btn-secondary {
    border-color: white;
    color: white;
}

.cta-container .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.services-list {
    padding: 3rem 2rem;
    background-color: var(--bg-white);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-split {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
}

.service-card-split:last-child {
    border-bottom: none;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

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

.service-info {
    flex: 2;
}

.service-pricing {
    flex: 1;
    text-align: center;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.service-info p {
    font-size: 1.05rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

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

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-ideal {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1.2rem;
    font-weight: 600;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.service-booking-form {
    margin-top: 2rem;
}

.faq-section {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

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

.faq-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-text);
}

.faq-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
}

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

.faq-item p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.6;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--light-text);
    opacity: 0.8;
}

.location-section {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

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

.location-container h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.location-container > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.location-directions {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.direction-item {
    flex: 1;
    min-width: 260px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
}

.direction-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.direction-item p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.6;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

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

.thanks-icon-large {
    width: 100px;
    height: 100px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--dark-text);
}

.step-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.step-item {
    flex: 1;
    min-width: 200px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

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

.step-item p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.6;
}

.thanks-actions {
    margin: 2rem 0;
}

.thanks-note {
    margin-top: 3rem;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.thanks-note p {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.thanks-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.thanks-note a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 3rem 2rem;
    background-color: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.last-updated {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--dark-text);
}

.legal-section p {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--light-text);
}

.legal-section li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.legal-section a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table thead {
    background-color: var(--bg-light);
}

.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--dark-text);
    border-bottom: 2px solid var(--border-color);
}

.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--light-text);
}

@media (max-width: 968px) {
    .split-content {
        flex-direction: column;
        gap: 2.5rem;
    }

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

    .nav-menu {
        gap: 1.5rem;
    }

    .split-text h1 {
        font-size: 2.3rem;
    }

    .split-text h2 {
        font-size: 1.8rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }

    .service-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .split-text h1 {
        font-size: 2rem;
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .btn-primary,
    .btn-secondary {
        display: block;
        margin: 0.5rem 0;
        text-align: center;
    }

    .thanks-content h1 {
        font-size: 2.2rem;
    }
}
