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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #c8a882;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f6f2;
    --bg-white: #ffffff;
    --border-color: #e0d8cf;
}

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

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

.header-asymmetric {
    position: relative;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: right;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.nav-floating {
    display: flex;
    gap: 2rem;
}

.nav-floating a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.hero-offset {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 8%;
    width: 60%;
    height: 100%;
    background-color: var(--border-color);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    max-width: 550px;
    margin-left: auto;
    margin-right: 8%;
    padding: 3rem;
    background-color: var(--bg-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

.hero-text-overlay p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-diagonal {
    display: flex;
    align-items: flex-start;
    gap: 5rem;
    padding: 8rem 8%;
    background-color: var(--bg-white);
}

.intro-block-left {
    flex: 1.2;
}

.intro-block-left h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.3;
}

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

.intro-image-right {
    flex: 1;
    margin-top: 3rem;
    background-color: var(--border-color);
}

.intro-image-right img {
    width: 100%;
    height: 450px;
}

.services-offset-cards {
    padding: 6rem 5% 8rem;
    background-color: var(--bg-light);
    position: relative;
}

.section-header-rotated {
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.section-header-rotated h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-left: 15%;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: space-between;
}

.service-card {
    background-color: var(--bg-white);
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    background-color: var(--border-color);
}

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

.service-card p {
    margin: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 1.5rem;
}

.service-card .cta-service {
    margin: 1.5rem;
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: calc(100% - 3rem);
}

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

.card-large {
    width: calc(48% - 1rem);
}

.card-medium {
    width: calc(31% - 1rem);
}

.card-small {
    width: calc(31% - 1rem);
}

.trust-section-angled {
    padding: 7rem 8%;
    background-color: var(--bg-white);
}

.trust-content-wrapper {
    display: flex;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-text {
    flex: 1;
}

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

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

.trust-visual {
    flex: 1.1;
    background-color: var(--border-color);
}

.trust-visual img {
    width: 100%;
    height: 500px;
}

.form-section-offset {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.form-container-irregular {
    max-width: 700px;
    margin-left: 12%;
    background-color: var(--bg-white);
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-header p {
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    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 {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

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

.footer-asymmetric {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

.footer-col a {
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--accent-color);
}

.disclaimer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    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: white;
    padding: 1.5rem 5%;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

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

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

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

.btn-cookie.reject:hover {
    border-color: white;
}

.about-hero-split {
    display: flex;
    min-height: 500px;
    background-color: var(--bg-light);
}

.about-text-side {
    flex: 1;
    padding: 5rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-side h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.2;
}

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

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

.about-image-side img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.philosophy-section {
    padding: 7rem 8%;
    background-color: var(--bg-white);
}

.philosophy-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

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

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.philosophy-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.philosophy-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section-offset {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.team-content {
    display: flex;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.team-image {
    flex: 1.2;
    background-color: var(--border-color);
}

.team-image img {
    width: 100%;
    height: 450px;
}

.team-text {
    flex: 1;
}

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

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

.process-section {
    padding: 7rem 8%;
    background-color: var(--bg-white);
}

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

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

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

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.services-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    gap: 5rem;
    padding: 5rem 8%;
    align-items: center;
    background-color: var(--bg-white);
}

.service-detail:nth-child(even) {
    background-color: var(--bg-light);
}

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

.service-detail-image img {
    width: 100%;
    height: 450px;
}

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

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

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 2rem 0 1.5rem;
}

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

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

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

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

.contact-info-section {
    display: flex;
    gap: 3rem;
    padding: 5rem 8%;
    background-color: var(--bg-white);
    max-width: 1400px;
    margin: 0 auto;
}

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

.contact-info-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-info-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-directions {
    display: flex;
    gap: 5rem;
    padding: 5rem 8%;
    background-color: var(--bg-light);
    align-items: center;
}

.directions-content {
    flex: 1;
}

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

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

.directions-image {
    flex: 1;
    background-color: var(--border-color);
}

.directions-image img {
    width: 100%;
    height: 400px;
}

.thanks-section {
    display: flex;
    gap: 5rem;
    padding: 6rem 8%;
    min-height: 500px;
    align-items: center;
    background-color: var(--bg-light);
}

.thanks-content {
    flex: 1;
}

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

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

.thanks-image {
    flex: 1;
    background-color: var(--border-color);
}

.thanks-image img {
    width: 100%;
    height: 450px;
}

.btn-return {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
    line-height: 1.8;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-light);
}

.legal-content li {
    margin-bottom: 0.5rem;
}

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

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

@media (max-width: 1024px) {
    .hero-text-overlay h1 {
        font-size: 2.2rem;
    }

    .intro-diagonal {
        flex-direction: column;
        gap: 3rem;
    }

    .services-grid-irregular {
        flex-direction: column;
    }

    .card-large,
    .card-medium,
    .card-small {
        width: 100%;
    }

    .trust-content-wrapper {
        flex-direction: column;
    }

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

    .contact-info-section {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero-offset {
        min-height: 400px;
    }

    .hero-image-container {
        width: 100%;
        left: 0;
    }

    .hero-text-overlay {
        margin: 0 5%;
        padding: 2rem;
    }

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

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

    .about-hero-split {
        flex-direction: column;
    }

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

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

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

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

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