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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8ba89a;
    --text-dark: #1a2e28;
    --text-light: #4a5d56;
    --bg-light: #f8f9f7;
    --border-color: #d4dbd7;
    --accent-color: #4d7c6a;
}

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

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

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

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

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

.ad-disclosure {
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-light);
}

.hero-split {
    background-color: #ffffff;
}

.hero-content {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-text {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
    display: flex;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.2rem;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 79, 0.25);
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.2rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: transparent;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--text-dark);
    background-color: var(--bg-light);
}

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

.container-medium {
    max-width: 850px;
    margin: 0 auto;
}

.container-large {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.intro-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.services-split {
    background-color: #ffffff;
}

.split-container {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

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

.split-text {
    flex: 1;
    padding: 4.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.split-text h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.9rem;
    font-weight: 600;
}

.split-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1.8rem;
}

.split-text ul li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.split-image {
    flex: 1;
    overflow: hidden;
    display: flex;
}

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

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.select-service {
    align-self: flex-start;
    margin-top: 1rem;
}

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

.form-section h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

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

.main-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: border-color 0.2s ease;
}

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

.main-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

.philosophy-split {
    background-color: #ffffff;
}

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.page-hero {
    padding: 5rem 2rem 3rem;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-split,
.approach-split,
.services-detail {
    background-color: #ffffff;
}

.contact-split {
    padding: 3rem 0;
}

.contact-info {
    margin-top: 2.5rem;
}

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

.info-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

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

.no-link {
    color: var(--text-light);
    cursor: text;
}

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

.location-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

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

.thanks-section {
    padding: 6rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-section > .container-medium > p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.service-highlight {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.next-steps {
    margin: 4rem 0 3rem;
}

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

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

.step-card {
    flex: 1;
    min-width: 240px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
}

.step-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

.cta-section {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background-color: #ffffff;
    color: var(--primary-color);
}

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

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

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.6rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.main-footer {
    background-color: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 2rem;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

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

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

.cookie-buttons button {
    white-space: nowrap;
}

@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text {
        padding: 3rem 2rem;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

    .split-container,
    .split-container.reverse {
        flex-direction: column;
        min-height: auto;
    }

    .split-text {
        padding: 3rem 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

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

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-buttons button {
        flex: 1;
    }
}

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

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

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

    .ad-disclosure {
        font-size: 0.75rem;
    }
}