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

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

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

.nav-brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c5f4f;
}

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

.nav-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c5f4f;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
}

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

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
}

.hero-left p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c5f4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1f4739;
    cursor: pointer;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2c5f4f;
    text-decoration: none;
    border: 2px solid #2c5f4f;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: #2c5f4f;
    color: #ffffff;
    cursor: pointer;
}

.intro-split {
    display: flex;
}

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

.split-image {
    flex: 1;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.split-content h2 {
    font-size: 2.2rem;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
}

.split-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f4f;
    font-weight: bold;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

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

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.6rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

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

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

.btn-select {
    width: 100%;
    padding: 0.9rem;
    background-color: #2c5f4f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-split {
    display: flex;
}

.form-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #f8f9f8;
}

.form-content h2 {
    font-size: 2.2rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.form-content p {
    color: #666;
    margin-bottom: 2rem;
}

.form-visual {
    flex: 1;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.booking-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2c5f4f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

.trust-content h2 {
    font-size: 2.5rem;
    color: #2c5f4f;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #f8f9f8;
    border-radius: 8px;
    border-left: 4px solid #2c5f4f;
}

.testimonial p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    color: #888;
    font-style: normal;
    font-size: 0.95rem;
}

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

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: #d0e0d8;
    line-height: 1.8;
}

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

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

.footer-col a {
    color: #d0e0d8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom .disclaimer {
    font-size: 0.85rem;
    color: #d0e0d8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c5f4f;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 2000;
    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 {
    flex: 1;
    margin: 0;
}

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

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

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

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

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

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

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

.page-hero h1 {
    font-size: 3rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

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

.about-split,
.team-split {
    display: flex;
}

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

.philosophy-section,
.values-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.content-wrapper h2 {
    font-size: 2.5rem;
    color: #2c5f4f;
    margin-bottom: 2rem;
    text-align: center;
}

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

.philosophy-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
}

.philosophy-item h3 {
    font-size: 1.4rem;
    color: #2c5f4f;
    margin-bottom: 0.8rem;
}

.philosophy-item p {
    color: #666;
    line-height: 1.7;
}

.values-list {
    margin-top: 2rem;
}

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

.value-item h3 {
    font-size: 1.5rem;
    color: #2c5f4f;
    margin-bottom: 0.8rem;
}

.value-item p {
    color: #666;
    line-height: 1.7;
}

.services-detailed {
    padding: 3rem 2rem;
    background-color: #fafafa;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.service-detail-split {
    display: flex;
}

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

.service-detail-image {
    flex: 1;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-intro {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

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

.service-meta {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9f8;
    border-radius: 6px;
}

.meta-item {
    margin-bottom: 0.7rem;
}

.meta-item:last-child {
    margin-bottom: 0;
}

.meta-item strong {
    color: #2c5f4f;
}

.pricing-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #2c5f4f;
    color: #ffffff;
    border-radius: 6px;
    text-align: center;
}

.pricing-box .price {
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-box .price-note {
    font-size: 1rem;
    opacity: 0.9;
}

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

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

.booking-cta p {
    color: #d0e0d8;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #f8f9f8;
}

.contact-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.info-block {
    margin-bottom: 3rem;
}

.info-block h2 {
    font-size: 1.6rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.info-block p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.directions-section,
.faq-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.direction-item {
    flex: 1 1 300px;
}

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

.direction-item p {
    color: #666;
    line-height: 1.7;
}

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

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

.faq-item p {
    color: #666;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #fafafa;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
}

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

.confirmation-details {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.confirmation-details p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.selected-service {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f8f9f8;
    border-radius: 6px;
}

.selected-service p {
    color: #2c5f4f;
    font-weight: 500;
}

.next-steps {
    text-align: left;
    margin: 3rem auto;
    max-width: 600px;
}

.next-steps h2 {
    font-size: 1.8rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #555;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f4f;
    font-weight: bold;
}

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

.legal-page {
    padding: 3rem 2rem;
    background-color: #fafafa;
    min-height: 70vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.updated-date {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

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

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-content li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #2c5f4f;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1f4739;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-split,
    .about-split,
    .team-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-left,
    .split-content,
    .form-content,
    .service-detail-content,
    .contact-info {
        padding: 3rem 2rem;
    }

    .hero-left h1,
    .page-hero h1,
    .thanks-content h1 {
        font-size: 2.2rem;
    }

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

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

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

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

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

    .testimonials {
        flex-direction: column;
    }

    .philosophy-item,
    .direction-item {
        flex: 1 1 100%;
    }

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