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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d5f3f;
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-right a {
    color: #2a2a2a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #2d5f3f;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #ffffff;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f8f6f3;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-right {
    flex: 1;
    background-color: #d4c5b0;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #234a30;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #2d5f3f;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2d5f3f;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2d5f3f;
    color: #ffffff;
}

.split-reverse {
    display: flex;
    background-color: #ffffff;
    margin: 60px 0;
}

.split-image {
    flex: 1;
    background-color: #c8b8a0;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
}

.split-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8f6f3;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section-header-center p {
    font-size: 18px;
    color: #666;
}

.service-cards {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.service-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin: 24px 24px 12px;
}

.service-card p {
    font-size: 15px;
    color: #666;
    margin: 0 24px 16px;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #2d5f3f;
    margin: 0 24px 24px;
}

.center-cta {
    text-align: center;
}

.booking-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.booking-header {
    text-align: center;
    margin-bottom: 50px;
}

.booking-header h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.booking-header p {
    font-size: 17px;
    color: #666;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2d5f3f;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #234a30;
}

.trust-section {
    padding: 80px 0;
    background-color: #f8f6f3;
}

.trust-grid {
    display: flex;
    gap: 50px;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.trust-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: #333;
}

.page-hero {
    padding: 80px 0 60px;
    background-color: #f8f6f3;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 19px;
    color: #666;
}

.split-content-section {
    display: flex;
    padding: 80px 0;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.split-text {
    flex: 1;
    padding: 0 40px;
}

.split-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 28px;
    line-height: 1.3;
}

.split-text p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.split-image-about {
    flex: 1;
    background-color: #c8b8a0;
}

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

.values-section {
    padding: 80px 0;
    background-color: #f8f6f3;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-block {
    flex: 1;
    min-width: 45%;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-block h3 {
    font-size: 24px;
    color: #2d5f3f;
    margin-bottom: 16px;
}

.value-block p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.team-intro {
    text-align: center;
    margin-bottom: 50px;
}

.team-intro h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.team-intro p {
    font-size: 18px;
    color: #666;
}

.team-image {
    margin-bottom: 40px;
    background-color: #d4c5b0;
}

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

.team-description {
    max-width: 900px;
    margin: 0 auto;
}

.team-description p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-about {
    padding: 80px 0;
    background-color: #2d5f3f;
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-about p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 32px;
}

.services-detailed {
    padding: 60px 0;
}

.service-item-split {
    display: flex;
    margin-bottom: 80px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

.service-detail-left {
    flex: 1;
    background-color: #d4c5b0;
}

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

.service-detail-right {
    flex: 1;
    padding: 50px 60px;
}

.service-detail-right h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 24px;
}

.service-detail-right p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-top: 24px;
}

.service-features li {
    font-size: 15px;
    color: #2a2a2a;
    padding-left: 28px;
    margin-bottom: 10px;
    position: relative;
}

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

.booking-cta-services {
    padding: 80px 0;
    background-color: #f8f6f3;
    text-align: center;
}

.booking-cta-services h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.booking-cta-services p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

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

.contact-info-section {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
}

.contact-block {
    margin-bottom: 50px;
}

.contact-block h2 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-detail {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
}

.hours-list {
    margin-top: 20px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}

.hours-row .day {
    font-weight: 600;
    color: #2a2a2a;
}

.hours-row .time {
    color: #666;
}

.email-display {
    font-size: 18px;
    color: #2d5f3f;
    font-weight: 600;
    margin: 16px 0;
}

.contact-note {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

.contact-image-section {
    flex: 1;
    background-color: #c8b8a0;
}

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

.location-details {
    padding: 80px 0;
    background-color: #f8f6f3;
}

.location-details h2 {
    text-align: center;
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.location-grid {
    display: flex;
    gap: 50px;
}

.location-info {
    flex: 1;
}

.location-info h3 {
    font-size: 22px;
    color: #2d5f3f;
    margin-bottom: 16px;
}

.location-info p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f6f3;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 50px;
}

.confirmation-details {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 50px;
    text-align: left;
}

.confirmation-details h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
}

.detail-label {
    font-weight: 600;
    color: #2a2a2a;
}

.detail-value {
    color: #666;
}

.next-steps {
    text-align: left;
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.next-steps ul li {
    font-size: 16px;
    color: #4a4a4a;
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    line-height: 1.6;
}

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

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.legal-page {
    padding: 60px 0 100px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.legal-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 50px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 28px;
    color: #2d5f3f;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 12px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-split,
    .split-reverse,
    .split-content-section,
    .service-item-split,
    .contact-split {
        flex-direction: column;
    }

    .service-cards,
    .trust-grid,
    .values-grid,
    .footer-content,
    .location-grid {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .nav-right {
        gap: 15px;
        font-size: 14px;
    }

    .hero-left,
    .split-content,
    .service-detail-right {
        padding: 40px 30px;
    }

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