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

:root {
    --primary-color: #2c2c2c;
    --secondary-color: #8b7355;
    --accent-color: #d4c5b9;
    --text-color: #333333;
    --light-bg: #f9f6f2;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

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

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

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

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

.container-fluid {
    padding: 0 40px;
}

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

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    padding: 60px;
    max-width: 600px;
}

.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: var(--transition);
    margin-top: 20px;
}

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

.intro-asymmetric {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-visual {
    flex: 0.8;
    border-radius: 8px;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: auto;
}

.services-highlight {
    padding: 100px 0;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
    background-color: var(--white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    margin-bottom: 12px;
}

.service-info p {
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

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

.how-it-works-split {
    display: flex;
}

.process-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.process-content {
    padding: 80px 60px;
}

.process-steps {
    margin-top: 40px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
}

.step-text h4 {
    margin-bottom: 8px;
}

.testimonials {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.testimonial {
    flex: 1 1 calc(33.333% - 27px);
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.cta-section-split {
    display: flex;
}

.cta-content {
    padding: 80px 60px;
    background-color: var(--secondary-color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    color: var(--white);
}

.cta-content p {
    color: var(--white);
}

.form-container {
    padding: 80px 60px;
    background-color: var(--light-bg);
}

.contact-form,
.service-booking-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #f0f0f0;
}

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

.disclaimer-content h3 {
    margin-bottom: 20px;
}

.disclaimer-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--white);
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

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

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

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

.page-hero {
    padding: 80px 0 60px;
    background-color: var(--light-bg);
    text-align: center;
}

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

.about-image,
.contact-visual,
.values-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-image img,
.contact-visual img,
.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content,
.contact-info,
.values-content {
    padding: 80px 60px;
}

.team-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

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

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

.team-member {
    flex: 1 1 calc(33.333% - 27px);
    text-align: center;
}

.member-image {
    width: 100%;
    height: 350px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

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

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.values-list {
    margin-top: 30px;
}

.value-item {
    margin-bottom: 30px;
}

.cta-simple {
    padding: 80px 0;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.btn-cta {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 4px;
    margin-top: 20px;
    transition: var(--transition);
}

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

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

.service-detail-split {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

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

.service-detail-image {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    padding: 40px;
}

.service-price-large {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
}

.service-detail-content ul {
    list-style: none;
    margin: 20px 0;
}

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-detail-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.form-section-centered {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.form-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-box h2 {
    text-align: center;
    margin-bottom: 10px;
}

.form-box > p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h4 {
    margin-bottom: 10px;
}

.faq-section {
    padding: 80px 0;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 20px);
}

.faq-item h4 {
    margin-bottom: 12px;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-box {
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    font-weight: 600;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 4px;
    transition: var(--transition);
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 14px 30px;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    transition: var(--transition);
}

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

.next-steps {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.step-card {
    flex: 1 1 calc(33.333% - 27px);
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.step-card .step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    margin-bottom: 10px;
}

.last-updated {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.legal-page h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 40px;
}

.legal-page ul li {
    margin-bottom: 10px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.cookie-table th {
    background-color: var(--light-bg);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-split,
    .how-it-works-split,
    .about-split,
    .contact-split,
    .values-split,
    .cta-section-split {
        flex-direction: column;
    }

    .hero-content,
    .process-content,
    .about-content,
    .contact-info,
    .values-content,
    .cta-content,
    .form-container {
        padding: 60px 40px;
    }

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

    .testimonial {
        flex: 1 1 100%;
    }

    .team-member {
        flex: 1 1 calc(50% - 20px);
    }

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

    .service-detail-split {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .navigation {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        justify-content: center;
    }

    .hero-split {
        min-height: auto;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .process-content,
    .about-content,
    .contact-info,
    .values-content,
    .cta-content,
    .form-container {
        padding: 40px 20px;
    }

    .team-member {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
    }

    .container-fluid {
        padding: 0 20px;
    }
}