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

:root {
    --primary-color: #4a7c59;
    --secondary-color: #8b7355;
    --text-dark: #2c2c2c;
    --text-medium: #5a5a5a;
    --text-light: #7a7a7a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --accent-warm: #d4c4b0;
}

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

h1, h2, h3, h4, h5 {
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

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

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.7rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: var(--bg-light);
}

.hero-text-container {
    max-width: 600px;
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.2rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #3d6549;
    transform: translateY(-2px);
    color: var(--bg-white);
}

.cta-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-secondary:hover {
    background-color: #74614a;
    transform: translateY(-2px);
    color: var(--bg-white);
}

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

.problem-section h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.problem-section p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

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

.insight-left {
    flex: 1;
    position: relative;
}

.insight-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: var(--bg-light);
}

.insight-content {
    max-width: 560px;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1.5rem;
}

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

.story-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.story-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.story-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.testimonial {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-medium);
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
}

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

.benefits-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: var(--bg-white);
}

.benefits-content {
    max-width: 560px;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.benefits-right {
    flex: 1;
    position: relative;
}

.benefits-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-reveal {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.service-image {
    height: 240px;
    overflow: hidden;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.service-content p {
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

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

.btn-select {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select:hover {
    background-color: #74614a;
    transform: translateY(-2px);
}

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

.form-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 2.5rem;
}

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

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

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

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

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.main-footer {
    background-color: var(--text-dark);
    color: #e0e0e0;
    padding: 4rem 0 0;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--bg-white);
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid #444;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 44, 44, 0.98);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #3d6549;
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

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

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-lead {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-top: 1rem;
}

.origin-split {
    display: flex;
    align-items: stretch;
    margin-top: 4rem;
}

.origin-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: var(--bg-white);
}

.origin-content {
    max-width: 560px;
}

.origin-right {
    flex: 1;
    position: relative;
}

.origin-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.team-split {
    display: flex;
    align-items: stretch;
    margin-top: 4rem;
}

.team-left {
    flex: 1;
    position: relative;
}

.team-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: var(--bg-white);
}

.team-content {
    max-width: 560px;
}

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

.process-steps {
    margin-top: 3rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-warm);
    min-width: 80px;
}

.process-step h3 {
    margin-bottom: 0.5rem;
}

.commitment-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.commitment-text {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin: 2rem auto;
    max-width: 720px;
}

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

.services-intro-text {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-top: 1rem;
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 4rem;
}

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

.service-detail-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: var(--bg-white);
}

.service-detail-content {
    max-width: 560px;
}

.service-detail-right {
    flex: 1;
    position: relative;
}

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

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

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

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

.service-price-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.price-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

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

.price-note {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
}

.btn-select-service {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.services-cta {
    background-color: var(--bg-light);
    padding: 5rem 0;
    text-align: center;
}

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

.contact-intro {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-top: 1rem;
}

.contact-main-split {
    display: flex;
    align-items: stretch;
    margin-top: 3rem;
}

.contact-info-side {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: var(--bg-white);
}

.contact-info-content {
    max-width: 560px;
}

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

.contact-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}

.contact-visual-side {
    flex: 1;
    position: relative;
}

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

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

.location-details {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.location-method {
    flex: 1;
    min-width: 300px;
}

.faq-contact {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.contact-cta {
    background-color: var(--bg-light);
    padding: 5rem 0;
    text-align: center;
}

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

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-top: 1rem;
}

.service-confirmation {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-selected {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.next-steps {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.steps-timeline {
    margin-top: 3rem;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-marker {
    min-width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-time {
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.while-you-wait {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.wait-suggestions {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.wait-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.thanks-contact {
    padding: 5rem 0;
    background-color: var(--bg-white);
    text-align: center;
}

.contact-email-display {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.legal-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.legal-content {
    padding: 4rem 0;
}

.legal-content h2 {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

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

.legal-content ul li {
    margin-bottom: 0.8rem;
}

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

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

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

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

    h2 {
        font-size: 1.8rem;
    }

    .hero-split,
    .insight-split,
    .benefits-split,
    .origin-split,
    .team-split,
    .contact-main-split,
    .service-detail-split {
        flex-direction: column;
    }

    .hero-left,
    .insight-right,
    .benefits-left,
    .origin-left,
    .team-right,
    .contact-info-side,
    .service-detail-left {
        padding: 3rem 2rem;
    }

    .hero-right,
    .insight-left,
    .benefits-right,
    .origin-right,
    .team-left,
    .contact-visual-side,
    .service-detail-right {
        min-height: 400px;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

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

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

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