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

:root {
    --primary-color: #2c2416;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #faf8f5;
    --bg-white: #ffffff;
    --border-color: #e5ddd5;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 36, 22, 0.96);
    color: var(--bg-white);
    padding: 24px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

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

.btn-cookie-accept {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

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

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    background-color: var(--bg-light);
    border-radius: 3px;
}

.nav {
    display: flex;
    gap: 32px;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-editorial {
    position: relative;
    margin-bottom: 80px;
}

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

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 80px 0 60px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--bg-white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 20px;
    color: var(--bg-white);
    line-height: 1.6;
    opacity: 0.95;
}

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

.text-large {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.intro-narrative p {
    font-size: 18px;
    margin-bottom: 20px;
}

.insight-section {
    padding: 100px 0;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.2;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.text-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--accent-color);
}

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

.problem-amplification h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 32px;
    text-align: center;
}

.problem-amplification > p {
    font-size: 18px;
    margin-bottom: 48px;
    text-align: center;
}

.problem-cards {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

.problem-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.problem-card p {
    font-size: 16px;
    color: var(--text-light);
}

.trust-building {
    padding: 100px 0;
}

.trust-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-align: center;
}

.trust-content > p {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

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

.testimonial {
    margin-bottom: 48px;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 15px;
    color: var(--text-light);
}

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

.section-title-center {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 24px;
}

.section-intro-center {
    font-size: 18px;
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-image {
    flex: 1;
    min-height: 320px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-info p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

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

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

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

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

.cta-form-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.cta-form-section > div > p {
    font-size: 18px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 48px;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.form-selected-service {
    background-color: var(--bg-light);
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-reassurance {
    padding: 60px 0;
}

.disclaimer {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    padding: 20px;
    background-color: var(--bg-light);
    border-left: 3px solid var(--accent-color);
    border-radius: 4px;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

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

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

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

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

.footer-block ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: var(--accent-color);
}

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

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

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

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero .lead {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-content {
    padding: 80px 0;
}

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

.content-block.reverse {
    flex-direction: row-reverse;
}

.content-image {
    flex: 1;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

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

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.content-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.philosophy-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 32px;
    text-align: center;
}

.philosophy-section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.values-grid {
    display: flex;
    gap: 32px;
    margin-top: 80px;
    padding: 0 24px;
}

.value-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

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

.cta-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 32px;
}

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

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

.services-page {
    padding-bottom: 80px;
}

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

.service-detail {
    margin-bottom: 80px;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.service-detail-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.service-detail-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 1;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.booking-cta h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.booking-cta p {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 32px;
}

.contact-content {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
}

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

.info-block h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

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

.thanks-content h1 {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 48px;
    line-height: 1.7;
}

.thanks-service {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 48px;
}

.thanks-next h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.thanks-next p {
    font-size: 17px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 48px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.legal-update {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 24px;
    margin-bottom: 16px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        border-bottom: 1px solid var(--border-color);
        padding: 20px 24px;
        gap: 16px;
    }

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

    .hero-lead {
        font-size: 17px;
    }

    .split-layout,
    .content-block,
    .service-detail-content,
    .contact-layout {
        flex-direction: column;
    }

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

    .problem-cards,
    .trust-stats,
    .values-grid,
    .footer-content {
        flex-direction: column;
        gap: 24px;
    }

    .section-title-center,
    .cta-form-section h2,
    .page-hero h1 {
        font-size: 32px;
    }

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

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