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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fefefe;
}

.main-nav {
    background-color: #2d5016;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.ad-label {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #fff;
}

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

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background-color: #f8f6f3;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-color: #e8e4df;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2d5016;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #3e6b1f;
    cursor: pointer;
}

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

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

.image-block {
    flex: 1;
    background-color: #e8e4df;
    position: relative;
    overflow: hidden;
}

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

.text-block {
    flex: 1;
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.philosophy-section {
    background-color: #f8f6f3;
}

.approach-section {
    background-color: #fff;
}

.services-highlight {
    padding: 6rem 2rem;
    background-color: #fff;
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    max-width: 420px;
    background-color: #f8f6f3;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e8e4df;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    padding: 0 1.5rem;
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-card .price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5016;
    padding: 1rem 1.5rem 0.5rem;
}

.select-service {
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #2d5016;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #3e6b1f;
}

.select-service.selected {
    background-color: #5a8f2e;
}

.booking-section {
    padding: 6rem 2rem;
    background-color: #f8f6f3;
}

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

.booking-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.booking-intro p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.booking-form {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

.form-group input[readonly] {
    background-color: #f8f6f3;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #2d5016;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #3e6b1f;
}

.btn-submit:disabled {
    background-color: #9ca38f;
    cursor: not-allowed;
}

.trust-section {
    background-color: #fff;
}

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p,
.footer-section ul {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.8;
}

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

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

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.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: #b0b0b0;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.visible {
    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 {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

.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;
}

.btn-accept {
    background-color: #2d5016;
    color: #fff;
}

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.page-hero {
    padding: 6rem 2rem 4rem;
    background-color: #2d5016;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.content-wrapper p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.about-story {
    background-color: #fff;
}

.values-section {
    background-color: #f8f6f3;
}

.team-approach {
    background-color: #fff;
}

.environment-section {
    background-color: #f8f6f3;
}

.commitment-section {
    background-color: #fff;
}

.services-detail {
    background-color: #fff;
}

.service-detail-item {
    margin-bottom: 0;
}

.service-detail-item:nth-child(odd) {
    background-color: #f8f6f3;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    background-color: #2d5016;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.service-link:hover {
    background-color: #3e6b1f;
}

.service-notes {
    background-color: #f8f6f3;
}

.contact-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info-block,
.contact-details-block {
    flex: 1;
    min-width: 320px;
}

.contact-info-block h2,
.contact-details-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d5016;
    font-weight: 600;
}

.info-item p {
    margin-bottom: 0.3rem;
    color: #4a4a4a;
    font-size: 1.05rem;
}

.contact-details-block h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-details-block p {
    margin-bottom: 1rem;
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.7;
}

.location-note {
    background-color: #f8f6f3;
}

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

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-updated {
    color: #7a7a7a;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: #2d5016;
    font-weight: 600;
}

.legal-container p {
    margin-bottom: 1rem;
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.legal-container ul li {
    margin-bottom: 0.5rem;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #fff;
}

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

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

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2d5016;
    font-weight: 700;
}

.thanks-container > p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
}

.thanks-details {
    background-color: #f8f6f3;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.thanks-details h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #2d5016;
    font-weight: 600;
}

.thanks-next {
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-next h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.thanks-next p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #2d5016;
    color: #fff;
}

.btn-primary:hover {
    background-color: #3e6b1f;
}

.btn-secondary {
    background-color: transparent;
    color: #2d5016;
    border: 2px solid #2d5016;
}

.btn-secondary:hover {
    background-color: #f8f6f3;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-container {
        flex-direction: column;
    }

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

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

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

    .text-block h2 {
        font-size: 2rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }
}

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

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

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

    .hero-text p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}
