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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafaf8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    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: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #8b6f47;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #6f5838;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.header-asymmetric {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0dc;
    padding: 0;
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-block a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    order: 3;
    flex-basis: 100%;
    text-align: center;
    padding: 12px;
    background-color: #f5f5f3;
    border-radius: 4px;
}

.ad-disclosure span {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

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

.nav-offset a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-offset a:hover {
    color: #8b6f47;
}

.hero-offset {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #d4c4b0;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 8%;
    width: 70%;
    height: 100%;
}

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

.hero-text-floating {
    position: absolute;
    bottom: 12%;
    right: 8%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 48px 56px;
    max-width: 520px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-text-floating h1 {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 400;
}

.hero-text-floating p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
}

.intro-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-left {
    flex: 1.2;
    padding-top: 40px;
}

.intro-left h2 {
    font-size: 2.2rem;
    margin-bottom: 28px;
    font-weight: 400;
    color: #2c2c2c;
}

.intro-left p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
}

.intro-right-image {
    flex: 1;
    background-color: #e8e0d5;
    margin-top: -60px;
}

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

.services-preview-irregular {
    background-color: #f5f5f3;
    padding: 100px 40px;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding-left: 15%;
}

.services-header-offset h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    font-weight: 400;
}

.services-header-offset p {
    font-size: 1.15rem;
    color: #555;
}

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

.service-card {
    background-color: #ffffff;
    width: calc(33.333% - 30px);
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 40px;
}

.card-offset-3 {
    margin-top: 20px;
}

.card-offset-4 {
    margin-top: 60px;
}

.card-offset-5 {
    margin-top: 30px;
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e8e0d5;
}

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

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 1.5rem;
    font-weight: 500;
    color: #2c2c2c;
}

.service-card p {
    padding: 0 24px 16px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.price-tag {
    display: block;
    padding: 0 24px 16px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #8b6f47;
}

.cta-select {
    margin: 0 24px 24px;
    padding: 12px 28px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: calc(100% - 48px);
}

.cta-select:hover {
    background-color: #8b6f47;
}

.trust-overlap {
    max-width: 1400px;
    margin: -40px auto 0;
    padding: 80px 40px;
    position: relative;
}

.trust-content {
    background-color: #8b6f47;
    color: #ffffff;
    padding: 60px 80px;
    margin-left: 10%;
    max-width: 900px;
}

.trust-content h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 400;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.trust-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.trust-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.95;
}

.form-section-diagonal {
    background-color: #2c2c2c;
    padding: 100px 40px;
    margin-top: 80px;
    position: relative;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto 0 15%;
    background-color: #ffffff;
    padding: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.form-container-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-weight: 400;
}

.form-container-offset > p {
    font-size: 1.05rem;
    margin-bottom: 36px;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid #e0e0dc;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b6f47;
}

.btn-submit {
    padding: 16px 32px;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 12px;
}

.btn-submit:hover {
    background-color: #6f5838;
}

.disclaimer-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #f5f5f3;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    text-align: center;
    font-style: italic;
}

.footer-irregular {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p,
.footer-col a {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #cccccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: #8b6f47;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.page-hero-about {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero-text-left {
    flex: 1;
}

.hero-text-left h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: #2c2c2c;
}

.hero-text-left p {
    font-size: 1.2rem;
    color: #555;
}

.hero-image-right {
    flex: 1.2;
    background-color: #e8e0d5;
}

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

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

.content-block-1 {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.content-block-1 h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.content-block-1 p {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: #444;
    line-height: 1.7;
}

.content-block-2 {
    flex: 0.8;
    min-width: 280px;
    margin-top: 60px;
    background-color: #e8e0d5;
}

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

.content-block-3,
.content-block-4 {
    flex: 1;
    min-width: 300px;
}

.content-block-3 h2,
.content-block-4 h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.content-block-3 p,
.content-block-4 p {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: #444;
    line-height: 1.7;
}

.values-section-offset {
    background-color: #f5f5f3;
    padding: 80px 40px;
}

.values-section-offset h2 {
    max-width: 1400px;
    margin: 0 auto 50px;
    font-size: 2.4rem;
    font-weight: 400;
    text-align: center;
}

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

.value-item {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    background-color: #ffffff;
    padding: 36px 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: #8b6f47;
    font-weight: 500;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.services-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 60px;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.services-hero p {
    font-size: 1.2rem;
    color: #555;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

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

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

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: #2c2c2c;
}

.service-text p {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: #444;
    line-height: 1.7;
}

.service-image {
    flex: 1;
    background-color: #e8e0d5;
}

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

.pricing-block {
    margin-top: 28px;
    padding: 24px;
    background-color: #f5f5f3;
    border-left: 4px solid #8b6f47;
}

.price-large {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 8px;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin: 0;
}

.cta-services {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    font-weight: 400;
}

.cta-services p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    color: #555;
}

.btn-cta-main {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-cta-main:hover {
    background-color: #6f5838;
}

.contact-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 60px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #555;
}

.contact-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 80px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    padding-right: 40px;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 400;
}

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

.info-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #8b6f47;
    font-weight: 500;
}

.info-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.note-text {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 12px;
}

.contact-image-block {
    flex: 1;
    background-color: #e8e0d5;
}

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

.visit-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #f5f5f3;
}

.visit-info h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 400;
}

.visit-points {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.visit-point {
    flex: 1;
    min-width: 260px;
    max-width: 340px;
}

.visit-point h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #8b6f47;
    font-weight: 500;
}

.visit-point p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.directions-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

.directions-section h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    font-weight: 400;
}

.directions-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

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

.thanks-content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: #2c2c2c;
}

.thanks-content > p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #555;
}

.thanks-details {
    text-align: left;
    background-color: #f5f5f3;
    padding: 40px;
    margin-bottom: 40px;
}

.thanks-details h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.thanks-details p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.thanks-details ul {
    margin: 20px 0 20px 24px;
}

.thanks-details li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 8px;
}

.service-confirm {
    font-weight: 600;
    color: #8b6f47;
    font-size: 1.1rem;
    padding: 16px;
    background-color: #ffffff;
    border-left: 4px solid #8b6f47;
}

.return-message {
    margin-top: 24px;
    font-style: italic;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #8b6f47;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #6f5838;
}

.btn-secondary {
    background-color: transparent;
    color: #8b6f47;
    border: 2px solid #8b6f47;
}

.btn-secondary:hover {
    background-color: #8b6f47;
    color: #ffffff;
}

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px 80px;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    font-weight: 400;
}

.updated-date {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 500;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #8b6f47;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 28px;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 8px;
}

.legal-content a {
    color: #8b6f47;
    text-decoration: none;
    border-bottom: 1px solid #8b6f47;
}

.legal-content a:hover {
    color: #6f5838;
    border-bottom-color: #6f5838;
}

@media (max-width: 1024px) {
    .hero-offset {
        height: auto;
        min-height: 500px;
    }

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

    .hero-text-floating {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -100px 20px 0;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 40px;
        padding: 60px 40px;
    }

    .intro-right-image {
        margin-top: 0;
    }

    .service-cards-staggered {
        flex-direction: column;
    }

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

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

    .contact-content-offset {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail {
        flex-direction: column !important;
        gap: 40px;
    }

    .page-hero-about {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        padding: 20px;
    }

    .nav-offset {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-text-floating {
        padding: 32px;
    }

    .hero-text-floating h1 {
        font-size: 2rem;
    }

    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }

    .services-header-offset {
        padding-left: 0;
    }

    .trust-content {
        margin-left: 0;
        padding: 40px;
    }

    .form-container-offset {
        padding: 40px 30px;
    }
}