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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --background-light: #f9f7f4;
    --background-white: #ffffff;
    --border-color: #e0d5c7;
}

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

.ad-disclosure {
    background-color: var(--background-light);
    color: var(--text-light);
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    border-bottom: 1px solid var(--border-color);
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 60px 40px;
    position: relative;
}

.hero-content-left {
    flex: 1;
    max-width: 600px;
    padding-right: 60px;
    transform: translateY(-40px);
}

.hero-content-left h1 {
    font-size: 58px;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-lead {
    font-size: 22px;
    color: var(--text-light);
    line-height: 1.5;
}

.hero-image-right {
    flex: 1;
    transform: translateY(50px);
}

.hero-image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    background-color: var(--background-light);
}

.story-irregular {
    padding: 120px 40px;
    background-color: var(--background-light);
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.story-block {
    max-width: 650px;
}

.story-block-1 {
    margin-left: 10%;
}

.story-block-2 {
    margin-left: auto;
    margin-right: 8%;
}

.story-block h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.story-block p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.7;
}

.story-image-offset {
    align-self: center;
    max-width: 700px;
    transform: translateX(-60px);
}

.story-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    background-color: var(--background-white);
}

.insight-overlap {
    display: flex;
    padding: 100px 40px;
    gap: 60px;
    align-items: flex-start;
}

.insight-text {
    flex: 1.5;
    transform: translateY(80px);
    padding-right: 40px;
}

.insight-text h3 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.insight-text p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.insight-visual {
    flex: 1;
}

.insight-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    background-color: var(--background-light);
}

.benefits-asymmetric {
    padding: 120px 40px;
    background-color: var(--background-white);
}

.section-title-offset {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 80px;
    margin-left: 15%;
}

.benefit-card {
    display: flex;
    gap: 50px;
    margin-bottom: 100px;
    align-items: center;
}

.benefit-left {
    margin-left: 0;
}

.benefit-right {
    margin-left: 15%;
}

.benefit-card img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    background-color: var(--background-light);
}

.benefit-content {
    flex: 1;
}

.benefit-content h4 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-content p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
}

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

.testimonial {
    max-width: 600px;
    padding: 35px;
    background-color: var(--background-white);
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 60px;
}

.testimonial-1 {
    margin-left: 5%;
}

.testimonial-2 {
    margin-left: auto;
    margin-right: 10%;
}

.testimonial-3 {
    margin-left: 20%;
}

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

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

.services-reveal {
    padding: 120px 40px;
    background-color: var(--background-white);
}

.services-reveal h2 {
    font-size: 48px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

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

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    flex: 1 1 calc(50% - 40px);
    min-width: 300px;
    max-width: 500px;
    padding: 40px;
    background-color: var(--background-light);
    border-radius: 4px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item:nth-child(even) {
    margin-top: 40px;
}

.service-item h4 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.cta-overlap {
    display: flex;
    padding: 80px 40px;
    background-color: var(--primary-color);
    color: var(--background-white);
    align-items: center;
    gap: 60px;
}

.cta-content {
    flex: 1.5;
    transform: translateX(40px);
}

.cta-content h3 {
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
}

.cta-action {
    flex: 1;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c49563;
}

.form-section {
    padding: 120px 40px;
    background-color: var(--background-light);
}

.form-container-offset {
    max-width: 700px;
    margin-left: 15%;
}

.form-container-offset h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-intro {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    background-color: var(--background-white);
    padding: 50px;
    border-radius: 4px;
}

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

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

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

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

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.form-privacy input[type="checkbox"] {
    margin-top: 4px;
    width: auto;
}

.form-privacy label {
    font-size: 14px;
    color: var(--text-dark);
}

.form-privacy a {
    color: var(--secondary-color);
}

.form-submit {
    width: 100%;
    padding: 18px;
    background-color: var(--secondary-color);
    color: var(--background-white);
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #755f46;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: var(--background-white);
    border-top: 1px solid var(--border-color);
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
}

.footer-asymmetric {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 80px 40px 30px;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
}

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

.footer-col h5 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    text-decoration: none;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 25px 40px;
    display: none;
    z-index: 1000;
    border-top: 2px solid var(--accent-color);
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

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

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

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

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    padding: 100px 40px 80px;
    background-color: var(--background-light);
    text-align: center;
}

.page-hero-about h1,
.page-hero-services h1,
.page-hero-contact h1 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.about-story {
    padding: 80px 40px;
}

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

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

.about-block img {
    flex: 1;
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    background-color: var(--background-light);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

.values-section h2 {
    font-size: 42px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

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

.value-item {
    flex: 1 1 calc(50% - 40px);
    min-width: 280px;
    padding: 35px;
    background-color: var(--background-white);
    border-radius: 4px;
}

.value-item h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.services-detailed {
    padding: 80px 40px;
}

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

.service-detail-offset-left {
    margin-left: 0;
}

.service-detail-offset-right {
    flex-direction: row-reverse;
    margin-left: 10%;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    background-color: var(--background-light);
}

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

.service-detail-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-pricing {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
}

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

.service-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.process-section {
    padding: 80px 40px;
    background-color: var(--background-light);
}

.process-section h2 {
    font-size: 42px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1 1 calc(50% - 50px);
    min-width: 280px;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--background-white);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-step h4 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.cta-services {
    padding: 80px 40px;
    text-align: center;
    background-color: var(--background-white);
}

.cta-services h3 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-services p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-info-section {
    padding: 80px 40px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 1;
}

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

.info-item {
    margin-bottom: 35px;
}

.info-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

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

.contact-map-block {
    flex: 1;
}

.contact-map-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    background-color: var(--background-light);
}

.contact-cta-section {
    padding: 80px 40px;
    text-align: center;
    background-color: var(--background-light);
}

.contact-cta-section h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.thanks-section {
    padding: 120px 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 40px;
}

.thanks-service-info {
    margin-bottom: 40px;
}

.selected-service-display {
    font-size: 17px;
    color: var(--secondary-color);
    padding: 20px;
    background-color: var(--background-light);
    border-radius: 4px;
}

.thanks-next-steps {
    margin-bottom: 50px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next-steps h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.thanks-next-steps li {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.thanks-next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.thanks-button {
    display: inline-block;
    padding: 16px 35px;
    background-color: var(--secondary-color);
    color: var(--background-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.thanks-button:hover {
    background-color: #755f46;
}

.thanks-link {
    display: inline-block;
    padding: 16px 35px;
    background-color: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

.legal-container h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.legal-container h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-container h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-container p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.legal-container li {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-offset {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-content-left {
        padding-right: 0;
        transform: translateY(0);
    }

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

    .hero-image-right {
        transform: translateY(0);
        margin-top: 30px;
    }

    .story-irregular {
        padding: 60px 20px;
        gap: 40px;
    }

    .story-block-1,
    .story-block-2 {
        margin-left: 0;
        margin-right: 0;
    }

    .story-image-offset {
        transform: translateX(0);
    }

    .insight-overlap {
        flex-direction: column;
        padding: 60px 20px;
    }

    .insight-text {
        transform: translateY(0);
        padding-right: 0;
    }

    .benefits-asymmetric {
        padding: 60px 20px;
    }

    .section-title-offset {
        margin-left: 0;
    }

    .benefit-card {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .benefit-left,
    .benefit-right {
        margin-left: 0;
    }

    .testimonial-1,
    .testimonial-2,
    .testimonial-3 {
        margin-left: 0;
        margin-right: 0;
    }

    .cta-overlap {
        flex-direction: column;
        padding: 60px 20px;
    }

    .cta-content {
        transform: translateX(0);
    }

    .form-container-offset {
        margin-left: 0;
    }

    .contact-form {
        padding: 30px 20px;
    }

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

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

    .about-block,
    .about-block-reverse {
        flex-direction: column;
    }

    .service-detail,
    .service-detail-offset-right {
        flex-direction: column;
        margin-left: 0;
    }

    .contact-layout {
        flex-direction: column;
    }

    .process-steps {
        gap: 30px;
    }

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