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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e2f;
    line-height: 1.6;
    background-color: #fafbfa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 47, 0.98);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

.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: 1rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #6b9354;
    transform: translateY(-2px);
}

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.ad-disclosure {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #2c3e2f;
    color: #fff;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    z-index: 9999;
}

.nav-floating {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    z-index: 1000;
    background: rgba(250, 251, 250, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e2f;
}

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

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

.nav-links a:hover {
    color: #5a7c4d;
}

.hero-asymmetric {
    margin-top: 120px;
    min-height: 85vh;
    padding: 2rem;
}

.hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

.hero-text-block {
    max-width: 650px;
    padding: 3rem;
    background: rgba(250, 251, 250, 0.9);
    position: relative;
    z-index: 10;
    margin-left: 5%;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e2f;
}

.hero-text-block p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4a5c4d;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #5a7c4d;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #6b9354;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(90, 124, 77, 0.3);
}

.hero-image-offset {
    width: 75%;
    height: 550px;
    margin-left: auto;
    margin-right: 8%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.intro-overlapping {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.content-irregular {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.text-block-offset {
    flex: 1;
    padding: 2rem;
    padding-left: 10%;
}

.text-block-offset h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.text-block-offset p {
    font-size: 1.125rem;
    color: #4a5c4d;
}

.image-overlay-right {
    width: 45%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-right: 5%;
}

.image-overlay-right img {
    width: 100%;
    height: 100%;
}

.values-stagger {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.value-card.offset-left {
    margin-left: 5%;
    margin-right: 25%;
}

.value-card.offset-right {
    margin-left: 25%;
    margin-right: 5%;
}

.value-card.offset-center {
    margin-left: 15%;
    margin-right: 15%;
}

.value-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e2f;
}

.value-card p {
    font-size: 1.125rem;
    color: #4a5c4d;
}

.services-preview-asymmetric {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #e8f3ea 0%, #d4e7d7 100%);
}

.services-header-offset {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding-left: 10%;
}

.services-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-header-offset p {
    font-size: 1.25rem;
    color: #4a5c4d;
}

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

.service-card-large,
.service-card-medium,
.service-card-small {
    border-radius: 8px;
    padding: 2rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card-large:hover,
.service-card-medium:hover,
.service-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card-large {
    flex: 1 1 calc(55% - 1rem);
    min-width: 350px;
}

.service-card-medium {
    flex: 1 1 calc(42% - 1rem);
    min-width: 320px;
}

.service-card-small {
    flex: 1 1 calc(58% - 1rem);
    min-width: 350px;
}

.service-image {
    width: 100%;
    height: 220px;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    overflow: hidden;
}

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

.service-card-large h3,
.service-card-medium h3,
.service-card-small h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-card-large p,
.service-card-medium p,
.service-card-small p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #fff;
    color: #2c3e2f;
    transform: scale(1.05);
}

.form-section-offset {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.form-container-irregular {
    flex: 1;
    padding: 3rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.125rem;
    color: #4a5c4d;
    margin-bottom: 2rem;
}

#selectedServiceDisplay {
    font-weight: 600;
    color: #5a7c4d;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: #5a7c4d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
    background: #6b9354;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-image-side {
    width: 40%;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.form-image-side img {
    width: 100%;
    height: 100%;
}

.testimonials-scattered {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-scattered h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #5a7c4d;
}

.testimonial.offset-1 {
    margin-left: 5%;
    margin-right: 20%;
}

.testimonial.offset-2 {
    margin-left: 20%;
    margin-right: 5%;
}

.testimonial.offset-3 {
    margin-left: 12%;
    margin-right: 15%;
}

.testimonial p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c3e2f;
}

.testimonial cite {
    font-size: 1rem;
    color: #5a7c4d;
    font-weight: 600;
    font-style: normal;
}

.cta-final-asymmetric {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #3d5a3e 0%, #5a7c4d 100%);
    margin: 4rem 2rem;
    border-radius: 12px;
}

.cta-content-offset {
    max-width: 800px;
    margin-left: 10%;
    color: #fff;
}

.cta-content-offset h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content-offset p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #2c3e2f;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.footer-asymmetric {
    background: #2c3e2f;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-block.offset-a {
    margin-top: 0;
}

.footer-block.offset-b {
    margin-top: 2rem;
}

.footer-block.offset-c {
    margin-top: 4rem;
}

.footer-block h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

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

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

.footer-block a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
}

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

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

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

    .image-overlay-right {
        width: 100%;
    }

    .value-card.offset-left,
    .value-card.offset-right,
    .value-card.offset-center {
        margin-left: 0;
        margin-right: 0;
    }

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

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

    .form-section-offset {
        flex-direction: column;
    }

    .form-image-side {
        width: 100%;
        height: 400px;
    }

    .testimonial.offset-1,
    .testimonial.offset-2,
    .testimonial.offset-3 {
        margin-left: 0;
        margin-right: 0;
    }

    .cta-content-offset {
        margin-left: 0;
    }

    .footer-block.offset-b,
    .footer-block.offset-c {
        margin-top: 0;
    }
}

.contact-page {
    margin-top: 120px;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #e8f3ea;
    border-radius: 8px;
}

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

.info-card p {
    margin-bottom: 0.5rem;
    color: #4a5c4d;
}

.about-page,
.services-page {
    margin-top: 120px;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.service-detail {
    padding: 2.5rem;
    background: #e8f3ea;
    border-radius: 8px;
    border-left: 4px solid #5a7c4d;
}

.service-detail h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e2f;
}

.service-detail p {
    font-size: 1.125rem;
    color: #4a5c4d;
    margin-bottom: 1rem;
}

.service-detail .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5a7c4d;
}

.legal-page {
    margin-top: 120px;
    padding: 4rem 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page p,
.legal-page ul {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    padding-left: 2rem;
}

.thanks-page {
    margin-top: 120px;
    padding: 6rem 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.thanks-page h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #5a7c4d;
}

.thanks-page p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4a5c4d;
}

.thanks-service {
    padding: 2rem;
    background: #e8f3ea;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-service h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #5a7c4d;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #6b9354;
    transform: translateY(-2px);
}