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

a {
    color: #2c5f4f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3d30;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #5a8f7b;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #4a7564;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

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

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

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c5f4f;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

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

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

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

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

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.3rem;
}

.story-visual {
    flex: 1;
    background-color: #e8ebe8;
}

.story-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.insight-section {
    padding: 5rem 2rem;
    background-color: #2c5f4f;
    color: #ffffff;
}

.insight-content {
    max-width: 900px;
    margin: 0 auto;
}

.insight-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.insight-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.citation {
    color: #a8d5c5;
    font-weight: 500;
}

.citation:hover {
    color: #ffffff;
}

.approach-split {
    display: flex;
    align-items: stretch;
    min-height: 70vh;
}

.approach-visual {
    flex: 1;
    background-color: #e8ebe8;
}

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

.approach-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f4f6f4;
}

.approach-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.approach-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.3rem;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.testimonial-card {
    max-width: 850px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #5a8f7b;
}

.testimonial-card:last-child {
    margin-bottom: 0;
}

.testimonial-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 500;
}

.services-reveal {
    padding: 5rem 2rem;
    background-color: #f4f6f4;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.services-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

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

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

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f4f;
    margin: 0.5rem 1.5rem;
}

.btn-select {
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.9rem 1.5rem;
    background-color: #2c5f4f;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #1a3d30;
}

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

.booking-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.booking-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.3rem;
}

.booking-form-wrapper {
    flex: 1;
    background-color: #f9f9f9;
    padding: 2.5rem;
}

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
}

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

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2c5f4f;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1a3d30;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f9f3e8;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem 2rem;
}

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

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

.footer-section ul,
.footer-section ol {
    list-style: none;
    padding: 0;
}

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

.footer-section a {
    color: #a8d5c5;
    font-size: 0.95rem;
}

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

.references {
    padding-left: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.references li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    max-width: 1200px;
    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: #bdc3c7;
}

.page-hero {
    padding: 5rem 2rem 3rem;
    background-color: #2c5f4f;
    color: #ffffff;
    text-align: center;
}

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

.page-hero-content p {
    font-size: 1.2rem;
    color: #d5e8e0;
}

.about-story-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.3rem;
}

.about-visual {
    flex: 1;
    background-color: #e8ebe8;
}

.about-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.approach-detail {
    padding: 5rem 2rem;
    background-color: #f4f6f4;
}

.approach-container {
    max-width: 1100px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
    text-align: center;
}

.approach-container > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.principle-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
}

.principle-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c5f4f;
    font-weight: 600;
}

.principle-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

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

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

.location-visual {
    flex: 1;
    background-color: #e8ebe8;
}

.location-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.location-content {
    flex: 1;
}

.location-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.location-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.3rem;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #f4f6f4;
}

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

.team-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.team-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.3rem;
}

.services-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    background-color: #ffffff;
    padding: 2rem;
}

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

.service-detail-visual {
    flex: 1;
    background-color: #e8ebe8;
}

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

.service-detail-content {
    flex: 1.2;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

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

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.3rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c5f4f;
    font-weight: 600;
}

.service-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.booking-cta {
    padding: 4rem 2rem;
    background-color: #2c5f4f;
    color: #ffffff;
    text-align: center;
}

.booking-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.booking-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #d5e8e0;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2c5f4f;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
}

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

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 600;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c5f4f;
    font-weight: 600;
}

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

.contact-item .note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 0.8rem;
}

.contact-visual {
    flex: 1;
    background-color: #e8ebe8;
}

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

.directions-section {
    padding: 4rem 2rem;
    background-color: #f4f6f4;
}

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

.directions-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

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

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

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

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

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.next-steps {
    margin: 3rem 0;
    background-color: #ffffff;
    padding: 2rem;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.next-steps ol {
    margin-left: 1.5rem;
}

.next-steps ol li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #2c5f4f;
    border: 2px solid #2c5f4f;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c5f4f;
    color: #ffffff;
}

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

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

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

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

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

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

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

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

.legal-container ul li,
.legal-container ol li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 0.6rem;
}

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

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f4f6f4;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .hero-split,
    .approach-split,
    .story-container,
    .booking-container,
    .about-story-split,
    .location-split,
    .contact-split,
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .hero-content h1,
    .page-hero-content h1,
    .thanks-container h1 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .ad-disclosure {
        display: none;
    }

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

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

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

    .principle-item {
        flex: 1 1 100%;
    }

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

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

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