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

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #2c7a4e;
    --accent-color: #f4a261;
    --dark-bg: #0d1f17;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

.header-asymmetric {
    background-color: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-block {
    flex: 0 0 auto;
}

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

.main-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    border-left: 2px solid var(--border-color);
    margin-left: 1rem;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-content-left {
    flex: 0 0 45%;
    padding: 4rem 0 4rem 8%;
    background-color: var(--light-bg);
}

.hero-content-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-image-right {
    flex: 0 0 55%;
    position: relative;
    background-color: var(--primary-color);
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.intro-asymmetric {
    display: flex;
    padding: 7rem 8%;
    gap: 4rem;
    align-items: flex-start;
}

.intro-block-small {
    flex: 0 0 35%;
}

.intro-block-small h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--primary-color);
}

.intro-block-large {
    flex: 0 0 60%;
    padding-top: 1rem;
}

.intro-block-large p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.services-grid-offset {
    padding: 5rem 4%;
    background-color: var(--light-bg);
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 2rem);
    background-color: var(--white);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.service-card.offset-top {
    margin-top: -3rem;
}

.service-card.offset-bottom {
    margin-top: 3rem;
}

.service-card.offset-center {
    margin-top: 1rem;
}

.service-card.offset-right {
    margin-top: 2rem;
}

.service-card.offset-left {
    margin-top: -1rem;
}

.service-card.offset-bottom-right {
    margin-top: 4rem;
}

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

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.select-service {
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonial-floating {
    padding: 6rem 8%;
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.testimonial-card {
    flex: 0 0 45%;
    padding: 2.5rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.testimonial-card:first-child {
    margin-top: 2rem;
}

.testimonial-card:last-child {
    margin-top: -2rem;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--secondary-color);
}

.cta-diagonal {
    padding: 7rem 4%;
    background-color: var(--dark-bg);
    display: flex;
    gap: 4rem;
    align-items: center;
}

.cta-content-block {
    flex: 0 0 40%;
    padding-left: 4%;
}

.cta-content-block h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content-block p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
}

.form-container {
    flex: 0 0 50%;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-selection-display {
    padding: 1rem;
    background-color: var(--light-bg);
    border-left: 3px solid var(--accent-color);
    margin-bottom: 1rem;
}

.service-selection-display span {
    font-weight: 600;
    color: var(--primary-color);
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.philosophy-split {
    display: flex;
    padding: 0;
    min-height: 70vh;
}

.philosophy-text {
    flex: 0 0 55%;
    padding: 5rem 6%;
    background-color: var(--light-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.philosophy-image {
    flex: 0 0 45%;
    background-color: var(--primary-color);
}

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

.disclaimer-section {
    padding: 3rem 8%;
    background-color: #fff9f0;
    border-top: 3px solid var(--accent-color);
}

.disclaimer-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-asymmetric {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 0 0;
}

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

.footer-col {
    flex: 0 0 30%;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 4%;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1 1 60%;
    margin: 0;
    color: rgba(255,255,255,0.9);
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.about-hero-offset {
    padding: 6rem 8%;
    background-color: var(--light-bg);
}

.about-intro h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-intro p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
}

.story-asymmetric {
    display: flex;
    padding: 5rem 0;
    align-items: center;
}

.story-block-right {
    flex: 0 0 50%;
    padding-right: 4%;
}

.story-block-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--light-bg);
}

.story-block-left {
    flex: 0 0 50%;
    padding: 0 8% 0 4%;
}

.story-block-left h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-block-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.3rem;
}

.values-stacked {
    padding: 5rem 15%;
    background-color: var(--light-bg);
}

.value-item {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.value-item:last-child {
    border-bottom: none;
}

.value-item h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.team-offset {
    padding: 6rem 8%;
}

.team-offset h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.team-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.team-member {
    flex: 0 0 45%;
}

.team-member img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    background-color: var(--light-bg);
}

.team-member h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.team-member p {
    font-size: 1rem;
    color: var(--text-light);
}

.philosophy-detailed {
    padding: 5rem 15%;
    background-color: var(--dark-bg);
}

.philosophy-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.philosophy-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
}

.cta-about {
    padding: 5rem 8%;
    text-align: center;
    background-color: var(--light-bg);
}

.cta-about h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

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

.services-hero {
    padding: 5rem 8%;
    background-color: var(--light-bg);
    text-align: center;
}

.services-hero h1 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.services-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.services-detailed {
    padding: 3rem 0;
}

.service-detail-card {
    display: flex;
    padding: 4rem 8%;
    gap: 4rem;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
    background-color: var(--light-bg);
}

.service-detail-image {
    flex: 0 0 45%;
}

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

.service-detail-content {
    flex: 0 0 50%;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
}

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

.service-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.select-service-btn {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cta-services {
    padding: 5rem 8%;
    background-color: var(--dark-bg);
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-services p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 5rem 8%;
    background-color: var(--light-bg);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.contact-layout {
    padding: 5rem 8%;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 0 0 50%;
}

.info-item {
    margin-bottom: 3rem;
}

.info-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.info-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-image {
    flex: 0 0 45%;
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--light-bg);
}

.visit-info {
    padding: 4rem 15%;
    background-color: var(--light-bg);
}

.visit-info h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.visit-info p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.thanks-section {
    display: flex;
    padding: 5rem 8%;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 0 0 55%;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-reference {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.thanks-image {
    flex: 0 0 40%;
}

.thanks-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--light-bg);
}

.next-steps {
    padding: 5rem 8%;
    background-color: var(--light-bg);
}

.next-steps h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.step-item {
    flex: 0 0 30%;
    padding: 2rem;
    background-color: var(--white);
    border-top: 4px solid var(--accent-color);
}

.step-item h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-item p {
    font-size: 1rem;
    color: var(--text-light);
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 4%;
}

.legal-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.legal-content ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

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

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-content-left,
    .hero-image-right {
        flex: 0 0 100%;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 4rem 5%;
    }

    .intro-block-small,
    .intro-block-large {
        flex: 0 0 100%;
    }

    .service-card {
        flex: 0 0 calc(50% - 2rem);
    }

    .testimonial-floating {
        flex-direction: column;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .cta-diagonal {
        flex-direction: column;
    }

    .cta-content-block,
    .form-container {
        flex: 0 0 100%;
    }

    .philosophy-split {
        flex-direction: column;
    }

    .philosophy-text,
    .philosophy-image {
        flex: 0 0 100%;
    }

    .story-asymmetric {
        flex-direction: column;
    }

    .story-block-right,
    .story-block-left {
        flex: 0 0 100%;
        padding: 2rem 5%;
    }

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

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

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

    .service-detail-image,
    .service-detail-content {
        flex: 0 0 100%;
    }

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

    .contact-info-block,
    .contact-image {
        flex: 0 0 100%;
    }

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

    .thanks-content,
    .thanks-image {
        flex: 0 0 100%;
    }

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

    .step-item {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .ad-disclosure {
        margin-left: 0;
        border-left: none;
        border-top: 2px solid var(--border-color);
        padding: 0.8rem 0;
        width: 100%;
        text-align: center;
    }

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

    .service-card {
        flex: 0 0 100%;
        margin-top: 0 !important;
    }

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

    .footer-col {
        flex: 0 0 100%;
    }

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

    .cookie-content p {
        flex: 0 0 100%;
    }
}