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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

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

.btn-accept {
    background-color: #a68a6d;
    color: #fff;
}

.btn-accept:hover {
    background-color: #8d7459;
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.ad-disclosure {
    background-color: #f4f0eb;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0ddd8;
}

.header-asymmetric {
    background-color: #fff;
    padding: 25px 40px;
    border-bottom: 1px solid #e8e6e1;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-right a {
    color: #5a5a5a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #a68a6d;
}

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.hero-text-block {
    flex: 1;
    max-width: 480px;
    padding-left: 60px;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #4a4a4a;
}

.cta-hero {
    display: inline-block;
    background-color: #a68a6d;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #8d7459;
    transform: translateY(-2px);
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

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

.intro-narrow {
    flex: 1.2;
    max-width: 550px;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.intro-narrow p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.intro-image-insert {
    flex: 0.8;
    margin-top: 60px;
}

.intro-image-insert img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.services-grid-offset {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header-left {
    margin-bottom: 60px;
    max-width: 600px;
}

.services-header-left h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.services-header-left p {
    font-size: 18px;
    color: #5a5a5a;
}

.service-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e8e6e1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-1 {
    flex: 1 1 calc(60% - 15px);
    display: flex;
}

.card-2 {
    flex: 1 1 calc(40% - 15px);
}

.card-3 {
    flex: 1 1 calc(35% - 15px);
}

.card-4 {
    flex: 1 1 calc(65% - 15px);
    display: flex;
}

.card-1 .card-image {
    flex: 1;
    min-height: 300px;
}

.card-1 .card-content {
    flex: 1;
}

.card-4 .card-image {
    flex: 0.6;
    min-height: 350px;
}

.card-4 .card-content {
    flex: 1.4;
}

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.card-content {
    padding: 35px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 15px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #a68a6d;
    margin-bottom: 20px;
}

.select-service {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.select-service:hover {
    background-color: #a68a6d;
}

.about-inline {
    background-color: #fff;
    padding: 120px 40px;
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content-offset {
    flex: 1;
    padding-right: 40px;
}

.about-content-offset h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-content-offset p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.about-image-right {
    flex: 0.8;
}

.about-image-right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.form-section-asymmetric {
    background-color: #f4f0eb;
    padding: 100px 40px;
    margin: 80px 0;
}

.form-container-offset {
    max-width: 680px;
    margin: 0 auto 0 120px;
}

.form-container-offset h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.form-container-offset > p {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 40px;
}

.consultation-form {
    background-color: #fff;
    padding: 45px;
    border-radius: 2px;
    border: 1px solid #e0ddd8;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #2c2c2c;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d4d0cb;
    border-radius: 2px;
    font-size: 15px;
    font-family: inherit;
    background-color: #fafaf8;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #a68a6d;
    color: #fff;
    border: none;
    padding: 16px 45px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #8d7459;
}

.testimonials-offset {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-offset h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 260px;
    background-color: #f9f7f4;
    padding: 35px;
    border-left: 4px solid #a68a6d;
    border-radius: 2px;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 15px;
}

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

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #d4d0cb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #a68a6d;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

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

.thanks-content {
    max-width: 600px;
    text-align: center;
    background-color: #fff;
    padding: 60px;
    border-radius: 2px;
    border: 1px solid #e8e6e1;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.thanks-content .selected-service {
    font-weight: 700;
    color: #a68a6d;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    background-color: #a68a6d;
    color: #fff;
    padding: 14px 35px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.thanks-content a:hover {
    background-color: #8d7459;
}

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

    .hero-text-block {
        padding-left: 0;
        max-width: 100%;
    }

    .hero-image-offset {
        margin-top: 0;
        width: 100%;
    }

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

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

    .about-inline {
        flex-direction: column;
        padding: 80px 30px;
        gap: 50px;
    }

    .about-content-offset {
        padding-right: 0;
    }

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

    .card-1,
    .card-2,
    .card-3,
    .card-4 {
        flex: 1 1 100%;
    }

    .card-1,
    .card-4 {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 36px;
    }

    .nav-right {
        gap: 20px;
    }

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

    .services-header-left h2 {
        font-size: 32px;
    }
}
