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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #f8f6f3;
    --background-white: #ffffff;
    --border-color: #e0ddd8;
    --success-color: #3d7a5f;
    --error-color: #c44536;
}

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

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

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

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.25rem;
}

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

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

ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--background-white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-cookie.accept {
    background-color: var(--success-color);
    color: var(--background-white);
}

.btn-cookie.accept:hover {
    background-color: #2d5f47;
}

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

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

.main-header {
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.375rem 0.75rem;
    background-color: var(--background-light);
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

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

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: var(--background-light);
}

.hero-content-left h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--background-white);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    text-align: center;
}

.cta-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.cta-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    text-align: center;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--background-white);
}

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

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

.intro-image-left {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.intro-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: var(--background-white);
}

.intro-content-right h2 {
    margin-bottom: 1.75rem;
}

.services-grid {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

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

.section-header-center h2 {
    margin-bottom: 1.25rem;
}

.section-header-center p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.service-cards-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background-color: var(--background-white);
    overflow: hidden;
    border-radius: 6px;
    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 6px 24px rgba(0, 0, 0, 0.12);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.service-details {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-details p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.875rem 2rem;
    background-color: var(--primary-color);
    color: var(--background-white);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: transparent;
    color: var(--primary-color);
}

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

.testimonial-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: var(--background-white);
}

.testimonial-content-left h2 {
    margin-bottom: 2.5rem;
}

.testimonial-content-left blockquote {
    margin-bottom: 2.5rem;
    padding-left: 2rem;
    border-left: 4px solid var(--accent-color);
}

.testimonial-content-left blockquote p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-content-left cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.testimonial-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.booking-form-section {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

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

.form-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    margin-bottom: 1.5rem;
}

.selected-service-info {
    padding: 1rem;
    background-color: var(--background-white);
    border-left: 4px solid var(--primary-color);
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-wrapper {
    flex: 1;
    background-color: var(--background-white);
    padding: 3rem;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--background-white);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: transparent;
    color: var(--primary-color);
}

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

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

.approach-image-left {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.approach-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: var(--background-white);
}

.approach-content-right h2 {
    margin-bottom: 1.75rem;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--background-light);
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column h4 {
    color: var(--background-white);
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.footer-column p {
    color: var(--background-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: var(--background-light);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent-color);
}

.footer-disclaimer p {
    font-size: 0.875rem;
    color: var(--background-light);
    margin-bottom: 0;
    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;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--background-light);
    margin-bottom: 0;
}

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

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

.about-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: var(--background-white);
}

.about-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--border-color);
}

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

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

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

.values-image-left {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.values-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: var(--background-light);
}

.team-section {
    padding: 5rem 2rem;
    background-color: var(--background-white);
}

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

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

.commitment-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: var(--background-light);
}

.commitment-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.cta-about {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-about h2 {
    color: var(--background-white);
    margin-bottom: 1.5rem;
}

.cta-about p {
    color: var(--background-light);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.cta-about .cta-primary {
    background-color: var(--background-white);
    color: var(--primary-color);
    border-color: var(--background-white);
}

.cta-about .cta-primary:hover {
    background-color: transparent;
    color: var(--background-white);
}

.services-detailed {
    padding: 3rem 2rem 5rem;
    background-color: var(--background-white);
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: flex;
    min-height: 600px;
}

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

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: var(--background-light);
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.service-includes {
    margin: 2rem 0;
}

.service-includes h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.price-section {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

.services-cta h2 {
    margin-bottom: 1.5rem;
}

.services-cta p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.contact-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: var(--background-light);
}

.contact-map-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background-color: var(--background-white);
}

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

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

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-note {
    padding: 1.5rem;
    background-color: var(--background-white);
    border-left: 4px solid var(--primary-color);
}

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

.map-placeholder {
    padding: 3rem;
    background-color: var(--background-light);
    border-radius: 6px;
    text-align: center;
}

.map-placeholder p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-guidance {
    padding: 5rem 2rem;
    background-color: var(--background-white);
}

.contact-guidance h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.guidance-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.guidance-card p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.quick-booking-cta {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    text-align: center;
}

.quick-booking-cta h2 {
    color: var(--background-white);
    margin-bottom: 1.5rem;
}

.quick-booking-cta p {
    color: var(--background-light);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.quick-booking-cta .cta-primary {
    background-color: var(--background-white);
    color: var(--primary-color);
    border-color: var(--background-white);
}

.quick-booking-cta .cta-primary:hover {
    background-color: transparent;
    color: var(--background-white);
}

.thanks-container {
    padding: 5rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-light);
}

.thanks-content {
    max-width: 800px;
    text-align: center;
    background-color: var(--background-white);
    padding: 4rem;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--background-white);
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    text-align: left;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 4px;
}

.thanks-details p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.next-steps {
    text-align: left;
    margin-bottom: 2.5rem;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.next-steps ul {
    list-style-type: none;
    padding-left: 0;
}

.next-steps li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 1rem;
}

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

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-update {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.cookies-table thead {
    background-color: var(--background-light);
}

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

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .testimonials-split,
    .approach-split,
    .about-split,
    .values-split,
    .commitment-split,
    .service-detail-card,
    .contact-split {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .hero-content-left,
    .intro-content-right,
    .testimonial-content-left,
    .approach-content-right,
    .about-content-left,
    .values-content-right,
    .commitment-content-left,
    .service-detail-content {
        padding: 3rem 2rem;
    }

    .hero-image-right,
    .intro-image-left,
    .testimonial-image-right,
    .approach-image-left,
    .about-image-right,
    .values-image-left,
    .commitment-image-right,
    .service-detail-image {
        min-height: 400px;
    }

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

    h1 {
        font-size: 2.5rem;
    }

    .hero-content-left h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        justify-content: space-between;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 300px;
    }

    .footer-container {
        flex-direction: column;
    }

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

    h1 {
        font-size: 2rem;
    }

    .hero-content-left h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .hero-content-left,
    .intro-content-right,
    .testimonial-content-left,
    .approach-content-right,
    .about-content-left,
    .values-content-right,
    .commitment-content-left,
    .service-detail-content {
        padding: 2rem 1.5rem;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    .thanks-content {
        padding: 2.5rem 1.5rem;
    }
}