* {
    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: #2d3436;
    background: #ffffff;
}

.main-nav {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px solid #e8ecef;
    z-index: 100;
    padding: 1.2rem 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d7a4e;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #5f6c7b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2d7a4e;
}

.hero-split {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
}

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

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

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

.split-right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a2332;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    color: #1a2332;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #2d3436;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3436;
}

.lead-text,
.intro-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #5f6c7b;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1rem;
    color: #5f6c7b;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: #2d7a4e;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(45, 122, 78, 0.2);
}

.cta-primary:hover {
    background: #256541;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 122, 78, 0.25);
}

.cta-secondary {
    display: inline-block;
    background: #f1f3f5;
    color: #2d7a4e;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.2s, transform 0.2s;
}

.cta-secondary:hover {
    background: #e3e7ea;
    transform: translateY(-2px);
}

.philosophy-split,
.story-split,
.values-split,
.team-split,
.approach-split,
.process-split,
.trust-split,
.contact-info-split,
.contact-cta-split,
.cta-split {
    padding: 5rem 2rem;
}

.philosophy-split {
    background: #ffffff;
}

.story-split {
    background: #f8faf9;
}

.values-split {
    background: #ffffff;
}

.team-split {
    background: #f8faf9;
}

.approach-split {
    background: #ffffff;
}

.process-split {
    background: #f8faf9;
}

.trust-split {
    background: #ffffff;
}

.contact-info-split {
    background: #f8faf9;
}

.contact-cta-split {
    background: #ffffff;
}

.cta-split {
    background: #f8faf9;
}

.services-preview {
    padding: 5rem 2rem;
    background: #ffffff;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #5f6c7b;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card-split:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card-split:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    min-width: 0;
}

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

.service-info {
    flex: 1;
    padding: 2rem;
}

.service-info h3 {
    color: #1a2332;
    margin-bottom: 1rem;
}

.service-info p {
    margin-bottom: 1.5rem;
}

.price-tag {
    display: inline-block;
    background: #e8f5ee;
    color: #2d7a4e;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #2d7a4e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.form-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.form-intro {
    margin-bottom: 2rem;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3436;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 1px solid #d1d8dd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d7a4e;
}

.cta-submit {
    background: #2d7a4e;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(45, 122, 78, 0.2);
}

.cta-submit:hover {
    background: #25654 1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 122, 78, 0.25);
}

.testimonials-inline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-item {
    background: #f8faf9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2d7a4e;
}

.testimonial-text {
    font-style: italic;
    color: #2d3436;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #5f6c7b;
    font-size: 0.95rem;
}

.site-footer {
    background: #1a2332;
    color: #b8c2cc;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #b8c2cc;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #b8c2cc;
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #2d7a4e;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d3d52;
    text-align: center;
}

.footer-bottom p {
    color: #8997a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2332;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #2d7a4e;
}

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

.cookie-btn {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-btn.accept {
    background: #2d7a4e;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #25654 1;
}

.cookie-btn.reject {
    background: #3d4f5f;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #2d3d4f;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #2d7a4e;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(45, 122, 78, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 50;
}

.sticky-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(45, 122, 78, 0.4);
}

.page-hero-split {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding-left: 1.5rem;
    border-left: 3px solid #2d7a4e;
}

.service-detail-split {
    padding: 5rem 2rem;
}

.service-detail-split:nth-child(even) {
    background: #f8faf9;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #5f6c7b;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a4e;
    font-weight: 700;
}

.price-display {
    display: inline-block;
    background: #e8f5ee;
    color: #2d7a4e;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.pricing-note {
    padding: 3rem 2rem;
    background: #f8faf9;
    border-top: 1px solid #e8ecef;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    color: #2d7a4e;
    margin-bottom: 0.5rem;
}

.contact-detail a {
    color: #2d7a4e;
    text-decoration: none;
}

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

.contact-note {
    background: #f8faf9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #5f6c7b;
    margin-bottom: 2rem;
}

.selected-service-info {
    background: #e8f5ee;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.selected-service-info strong {
    color: #2d7a4e;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps ol {
    margin-left: 1.5rem;
    color: #5f6c7b;
}

.next-steps li {
    margin-bottom: 0.8rem;
}

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

.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
    min-height: 70vh;
}

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

.legal-intro {
    font-size: 1.15rem;
    color: #5f6c7b;
    margin-bottom: 3rem;
}

.legal-container h2 {
    margin-top: 3rem;
    font-size: 1.8rem;
}

.legal-container h3 {
    margin-top: 2rem;
    font-size: 1.3rem;
}

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

.legal-container li {
    margin-bottom: 0.6rem;
    color: #5f6c7b;
}

.legal-update {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e8ecef;
    font-style: italic;
    color: #8997a6;
}

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

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

    .service-card-split,
    .service-card-split:nth-child(even) {
        flex-direction: column;
    }

    .service-visual img {
        height: 250px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

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

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

@media (max-width: 640px) {
    h1 {
        font-size: 1.8rem;
    }

    .lead-text,
    .intro-text {
        font-size: 1.1rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}