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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e37;
    background-color: #f9faf8;
}

.header-asymmetric {
    background-color: #ffffff;
    padding: 1.2rem 4%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #3d6b4f;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 0.82rem;
    color: #666;
    background-color: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

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

.main-nav a {
    color: #2c3e37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #5a8f6f;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content-left {
    flex: 0 0 47%;
    padding: 6rem 5% 4rem 6%;
    background-color: #e8f2ec;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    color: #2c3e37;
    margin-bottom: 1.8rem;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 1.15rem;
    color: #4a5d52;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    background-color: #3d6b4f;
    color: #ffffff;
    padding: 1rem 2.2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2d5a3d;
}

.hero-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.intro-overlap {
    display: flex;
    align-items: center;
    padding: 7rem 5%;
    gap: 4rem;
    position: relative;
    background-color: #ffffff;
    margin-top: -5rem;
    margin-left: 8%;
    margin-right: 3%;
}

.overlap-card {
    flex: 1;
    padding: 3rem;
    background-color: #f5f9f6;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.overlap-card h2 {
    font-size: 2.3rem;
    color: #2c3e37;
    margin-bottom: 1.5rem;
}

.overlap-card p {
    font-size: 1.05rem;
    color: #4a5d52;
}

.overlap-image {
    flex: 0 0 38%;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-irregular {
    padding: 8rem 5% 6rem;
    background-color: #f9faf8;
}

.section-header-offset {
    margin-left: 12%;
    margin-bottom: 4rem;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    color: #2c3e37;
    margin-bottom: 1rem;
}

.section-header-offset p {
    font-size: 1.1rem;
    color: #4a5d52;
    max-width: 580px;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.card-large {
    flex: 0 0 calc(58% - 1rem);
}

.card-medium {
    flex: 0 0 calc(50% - 1rem);
}

.card-small {
    flex: 0 0 calc(40% - 1rem);
}

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

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

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

.card-content h3 {
    font-size: 1.5rem;
    color: #2c3e37;
    margin-bottom: 1rem;
}

.card-content p {
    font-size: 1rem;
    color: #4a5d52;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3d6b4f;
    margin-bottom: 1.2rem;
}

.service-cta {
    background-color: #5a8f6f;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #4a7c59;
}

.cta-section-diagonal {
    background: linear-gradient(135deg, #3d6b4f 0%, #5a8f6f 100%);
    padding: 5rem 8%;
    margin: 4rem 0 4rem 10%;
    border-radius: 8px;
}

.cta-content {
    max-width: 700px;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: #e8f2ec;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #3d6b4f;
    padding: 1rem 2.2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #f0f0f0;
}

.contact-form-section {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.form-wrapper-offset {
    max-width: 680px;
    margin-left: 15%;
    background-color: #f5f9f6;
    padding: 3rem;
    border-radius: 8px;
}

.form-wrapper-offset h2 {
    font-size: 2.2rem;
    color: #2c3e37;
    margin-bottom: 1rem;
}

.form-wrapper-offset > p {
    font-size: 1.05rem;
    color: #4a5d52;
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e37;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #d0dcd5;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-submit {
    background-color: #3d6b4f;
    color: #ffffff;
    border: none;
    padding: 1.1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit:hover {
    background-color: #2d5a3d;
}

.trust-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 6rem 5%;
    background-color: #e8f2ec;
}

.trust-content {
    flex: 1;
    padding-right: 3rem;
}

.trust-content h3 {
    font-size: 2rem;
    color: #2c3e37;
    margin-bottom: 1.3rem;
}

.trust-content p {
    font-size: 1.05rem;
    color: #4a5d52;
}

.trust-image {
    flex: 0 0 42%;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
}

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

.footer-asymmetric {
    background-color: #2c3e37;
    color: #d0dcd5;
    padding: 4rem 5% 2rem;
}

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

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

.footer-block h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.footer-block p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-block ul li {
    margin-bottom: 0.7rem;
}

.footer-block ul li a {
    color: #d0dcd5;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #3d4d45;
    padding-top: 2rem;
    font-size: 0.9rem;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.8rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e37;
    color: #ffffff;
    padding: 1.5rem 5%;
    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: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #5a8f6f;
    color: #ffffff;
}

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

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

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

.page-hero-offset {
    background: linear-gradient(135deg, #e8f2ec 0%, #d4e5db 100%);
    padding: 6rem 5% 4rem;
    margin-left: 8%;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: #2c3e37;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #4a5d52;
}

.about-content-asymmetric {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 6rem 5%;
    background-color: #ffffff;
}

.content-block-left {
    flex: 1;
    padding-right: 2rem;
}

.content-block-left h2 {
    font-size: 2.3rem;
    color: #2c3e37;
    margin-bottom: 1.5rem;
}

.content-block-left p {
    font-size: 1.05rem;
    color: #4a5d52;
    margin-bottom: 1.3rem;
}

.image-block-right {
    flex: 0 0 45%;
    height: 480px;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    padding: 6rem 5%;
    background-color: #f9faf8;
}

.values-section h2 {
    font-size: 2.5rem;
    color: #2c3e37;
    margin-bottom: 3rem;
    text-align: center;
}

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

.value-card {
    flex: 0 0 calc(48% - 1rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.value-card:nth-child(odd) {
    margin-top: 2rem;
}

.value-card h3 {
    font-size: 1.6rem;
    color: #3d6b4f;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: #4a5d52;
}

.approach-offset {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 6rem 5%;
    background-color: #ffffff;
    margin-right: 8%;
}

.approach-image {
    flex: 0 0 42%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.3rem;
    color: #2c3e37;
    margin-bottom: 1.5rem;
}

.approach-text p {
    font-size: 1.05rem;
    color: #4a5d52;
    margin-bottom: 1.3rem;
}

.experience-section {
    padding: 5rem 5%;
    background-color: #e8f2ec;
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.experience-content h2 {
    font-size: 2.3rem;
    color: #2c3e37;
    margin-bottom: 1.5rem;
}

.experience-content p {
    font-size: 1.1rem;
    color: #4a5d52;
}

.services-detailed {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.service-detail-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-detail-image {
    flex: 0 0 48%;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #2c3e37;
    margin-bottom: 1.3rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a5d52;
    margin-bottom: 1.2rem;
}

.service-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    font-size: 1rem;
    color: #4a5d52;
    margin-bottom: 0.6rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3d6b4f;
    margin-bottom: 1.5rem;
}

.service-action {
    background-color: #3d6b4f;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-action:hover {
    background-color: #2d5a3d;
}

.cta-services {
    text-align: center;
    padding: 5rem 5%;
    background-color: #f9faf8;
}

.cta-services h2 {
    font-size: 2.5rem;
    color: #2c3e37;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.15rem;
    color: #4a5d52;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #3d6b4f;
    color: #ffffff;
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.contact-layout-asymmetric {
    display: flex;
    gap: 3rem;
    padding: 6rem 5%;
    background-color: #ffffff;
    align-items: flex-start;
}

.contact-info-block {
    flex: 0 0 45%;
    padding: 3rem;
    background-color: #f5f9f6;
    border-radius: 8px;
}

.contact-info-block h2 {
    font-size: 2.3rem;
    color: #2c3e37;
    margin-bottom: 2.5rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #3d6b4f;
    margin-bottom: 0.7rem;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a5d52;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-section {
    padding: 4rem 5%;
    background-color: #e8f2ec;
    text-align: center;
}

.location-section h2 {
    font-size: 2rem;
    color: #2c3e37;
    margin-bottom: 1rem;
}

.location-section p {
    font-size: 1.05rem;
    color: #4a5d52;
}

.thanks-section {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
    align-items: center;
    background-color: #ffffff;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #2c3e37;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #4a5d52;
    margin-bottom: 1.3rem;
}

.thanks-service {
    background-color: #e8f2ec;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.thanks-service p {
    margin: 0;
    font-size: 1.05rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.thanks-link {
    display: inline-block;
    background-color: #3d6b4f;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-link:hover {
    background-color: #2d5a3d;
}

.thanks-visual {
    flex: 0 0 40%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.8rem;
    color: #2c3e37;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #3d6b4f;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.4rem;
    color: #4a5d52;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    font-size: 1.05rem;
    color: #4a5d52;
    margin-bottom: 1.2rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    font-size: 1rem;
    color: #4a5d52;
    margin-bottom: 0.7rem;
}

.legal-page a {
    color: #3d6b4f;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2d5a3d;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.gdpr-table th,
.gdpr-table td,
.cookies-table th,
.cookies-table td {
    border: 1px solid #d0dcd5;
    padding: 1rem;
    text-align: left;
}

.gdpr-table th,
.cookies-table th {
    background-color: #e8f2ec;
    color: #2c3e37;
    font-weight: 600;
}

.gdpr-table td,
.cookies-table td {
    color: #4a5d52;
}

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

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

    .hero-image-right {
        min-height: 400px;
    }

    .intro-overlap {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .overlap-image {
        flex: 1;
        width: 100%;
    }

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

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

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

    .service-detail-image {
        flex: 1;
        width: 100%;
    }

    .about-content-asymmetric,
    .approach-offset,
    .trust-section,
    .thanks-section,
    .contact-layout-asymmetric {
        flex-direction: column;
    }

    .image-block-right,
    .approach-image,
    .trust-image,
    .thanks-visual,
    .contact-visual {
        flex: 1;
        width: 100%;
    }
}

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

    .main-nav {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

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

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

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

    .cta-section-diagonal {
        margin-left: 0;
    }

    .page-hero-offset {
        margin-left: 0;
    }

    .value-card {
        flex: 1 1 100%;
    }

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

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

    .thanks-link {
        text-align: center;
    }
}