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

:root {
    --primary-color: #2D5F3F;
    --secondary-color: #7FA490;
    --accent-color: #D4A574;
    --text-dark: #1A1A1A;
    --text-light: #555555;
    --bg-light: #F8F6F3;
    --bg-white: #FFFFFF;
    --border-color: #E0DDD8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-cookie {
    padding: 10px 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

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

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

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

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

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

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

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

.ad-disclosure {
    padding: 6px 12px;
    background-color: var(--bg-light);
    color: var(--text-light);
    font-size: 12px;
    border-radius: 4px;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    background-color: var(--bg-light);
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 540px;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--text-dark);
    transition: all 0.3s;
    cursor: pointer;
}

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

.intro-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.intro-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-left {
    flex: 1;
    background-color: var(--accent-color);
}

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

.intro-right {
    flex: 1;
}

.intro-right h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.intro-right p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-preview {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: var(--bg-white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--secondary-color);
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 24px 16px;
    flex-grow: 1;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 24px 16px;
    display: block;
}

.btn-select-service {
    margin: 0 24px 24px;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 17px;
}

.form-row {
    display: flex;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    font-size: 15px;
    font-family: inherit;
    background-color: var(--bg-white);
}

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

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

.testimonial-wrapper h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: var(--bg-white);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    font-style: normal;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.disclaimer-text {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

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

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

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

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.page-hero-content p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: var(--accent-color);
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-duration {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

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

.service-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-pricing {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-section {
    padding: 100px 40px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--bg-white);
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

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

.cta-content .btn-primary:hover {
    background-color: var(--bg-light);
}

.about-intro {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.about-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: var(--accent-color);
}

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

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

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.philosophy-item {
    flex: 1;
    min-width: 280px;
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

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

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

.team-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.team-member {
    flex: 1 1 calc(25% - 30px);
    min-width: 260px;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: var(--secondary-color);
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-weight: 700;
}

.team-member p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.member-bio {
    font-size: 15px;
    line-height: 1.7;
}

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

.values-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.values-wrapper h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.values-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-section {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-info > p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.hours-note {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.response-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
}

.response-info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-map {
    flex: 1;
    background-color: var(--accent-color);
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.map-caption {
    padding: 20px;
    background-color: var(--bg-light);
}

.map-caption p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.faq-content {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.thanks-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
    min-height: 70vh;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    line-height: 1.8;
}

.confirmation-details {
    background-color: var(--bg-light);
    padding: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.confirmation-details h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--text-dark);
    font-weight: 700;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
}

.step p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.selected-service-info {
    background-color: var(--bg-light);
    padding: 24px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color);
}

.selected-service-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
}

.selected-service-info p {
    font-size: 16px;
    color: var(--text-light);
}

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

.contact-reminder {
    background-color: var(--bg-light);
    padding: 32px;
}

.contact-reminder h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-reminder p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-page {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

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

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

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
        max-height: none;
    }

    .hero-content,
    .hero-image {
        flex: none;
    }

    .hero-image {
        height: 400px;
    }

    .intro-wrapper,
    .about-split,
    .contact-wrapper {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 16px 20px;
    }

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

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

    .hero-text p {
        font-size: 16px;
    }

    .intro-section,
    .services-preview,
    .form-section,
    .testimonials,
    .team-section,
    .values-section {
        padding: 60px 20px;
    }

    .service-card {
        min-width: 100%;
    }

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

    .ad-disclosure {
        width: 100%;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}