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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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: 300px;
    margin: 0;
}

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

.btn-accept, .btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2d6a4f;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 20px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

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

.nav-links a:hover {
    color: #27ae60;
}

.hero-asymmetric {
    margin-top: 90px;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 85vh;
    position: relative;
}

.hero-text-offset {
    width: 45%;
    padding: 80px 60px 80px 10%;
    position: relative;
    z-index: 10;
}

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

.hero-text-offset p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #555;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #2d6a4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #1b4332;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(45, 106, 79, 0.3);
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    height: 80vh;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

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

.intro-offset {
    padding: 120px 10% 80px;
    background: #f8f9fa;
}

.intro-block {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    position: relative;
}

.text-narrow {
    flex: 1;
    max-width: 600px;
}

.text-narrow h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a3a2e;
}

.text-narrow p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.image-card-float {
    width: 380px;
    height: 550px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    margin-top: -40px;
    background: #e8ece8;
}

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

.services-irregular {
    padding: 100px 8% 120px;
    background: #ffffff;
}

.section-title-offset {
    font-size: 44px;
    margin-bottom: 60px;
    margin-left: 15%;
    color: #1a3a2e;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.card-large {
    width: calc(60% - 15px);
}

.card-offset-top {
    width: calc(40% - 15px);
    margin-top: 50px;
}

.card-small {
    width: calc(35% - 15px);
    margin-top: -30px;
}

.card-wide {
    width: calc(65% - 15px);
    margin-top: 20px;
}

.card-offset-bottom {
    width: calc(50% - 15px);
    margin-top: -20px;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #d5dcd5;
}

.service-content {
    padding: 30px;
}

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

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.price-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #e8f5e9;
    color: #2d6a4f;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #1b4332;
    transform: translateY(-2px);
}

.cta-diagonal {
    padding: 100px 10%;
    position: relative;
    background: #2d6a4f;
    overflow: hidden;
}

.cta-content-overlap {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.cta-content-overlap h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content-overlap p {
    font-size: 19px;
    color: #d5e8d4;
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #2d6a4f;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-background-shape {
    position: absolute;
    right: -10%;
    top: -50px;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.benefits-stacked {
    padding: 80px 10%;
    background: #f8f9fa;
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

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

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 32px;
    margin-bottom: 18px;
    color: #1a3a2e;
}

.benefit-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.benefit-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #e8ece8;
}

.benefit-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.form-section-diagonal {
    padding: 100px 10%;
    background: #ffffff;
    position: relative;
}

.form-container-offset {
    max-width: 650px;
    margin-left: 10%;
}

.form-container-offset h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #1a3a2e;
}

.form-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #dfe6e9;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #1b4332;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 10%;
    background: #ecf0f1;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
    color: #7f8c8d;
    text-align: center;
}

.footer-asymmetric {
    background: #1a3a2e;
    color: #ffffff;
    padding: 60px 10% 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col-offset {
    padding-right: 40px;
}

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-header-offset {
    margin-top: 120px;
    padding: 80px 10% 60px;
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
    color: #ffffff;
}

.page-header-offset h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.header-subtitle {
    font-size: 20px;
    color: #d8f3dc;
}

.about-content {
    padding: 80px 10%;
}

.about-block-diagonal {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.about-text-side {
    flex: 1;
    max-width: 550px;
}

.about-text-side h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a3a2e;
}

.about-text-side p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.about-image-overlap {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    background: #e8ece8;
}

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

.values-section-stacked {
    padding: 80px 0;
    background: #f8f9fa;
    margin: 0 -10%;
    padding-left: 10%;
    padding-right: 10%;
}

.values-section-stacked h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a3a2e;
}

.values-grid-irregular {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.value-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    max-width: 320px;
}

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

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

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

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d6a4f;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.approach-section-offset {
    padding: 100px 0;
}

.approach-section-offset h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 70px;
    color: #1a3a2e;
}

.approach-steps-asymmetric {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.step-offset-right {
    padding-left: 60px;
}

.step-offset-left {
    padding-right: 60px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #d8f3dc;
    min-width: 80px;
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1a3a2e;
}

.step-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.cta-section-inline {
    padding: 80px;
    background: #e8f5e9;
    border-radius: 16px;
    text-align: center;
    margin-top: 80px;
}

.cta-section-inline h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a3a2e;
}

.cta-section-inline p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.services-detailed {
    padding: 60px 10% 100px;
}

.service-detail-block {
    display: flex;
    gap: 70px;
    align-items: center;
    margin-bottom: 100px;
}

.block-offset-left {
    padding-left: 5%;
}

.block-offset-right {
    padding-right: 5%;
}

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #e8ece8;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a3a2e;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d6a4f;
    font-weight: 700;
    font-size: 18px;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #2d6a4f;
}

.cta-bottom-offset {
    padding: 80px;
    background: #2d6a4f;
    border-radius: 16px;
    text-align: center;
    margin: 0 10%;
}

.cta-bottom-offset h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-bottom-offset p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #d8f3dc;
}

.contact-layout {
    padding: 60px 10% 100px;
}

.contact-info-diagonal {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 100px;
}

.contact-card {
    flex: 1;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
}

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

.contact-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a3a2e;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2d6a4f;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.contact-image-overlap {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #e8ece8;
}

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

.contact-map-section {
    padding: 60px 0;
    text-align: center;
}

.contact-map-section h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a3a2e;
}

.contact-map-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.map-placeholder {
    height: 400px;
    background: #e8f5e9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #7f8c8d;
}

.contact-hours-offset {
    padding: 80px 0;
}

.contact-hours-offset h2 {
    font-size: 34px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a3a2e;
}

.steps-contact {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.step-contact {
    max-width: 300px;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #2d6a4f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-contact p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.cta-contact-bottom {
    padding: 80px;
    background: #e8f5e9;
    border-radius: 16px;
    text-align: center;
    margin-top: 80px;
}

.cta-contact-bottom h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #1a3a2e;
}

.cta-contact-bottom p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

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

.thanks-container {
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #2d6a4f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 30px;
}

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

.thanks-message {
    font-size: 20px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
}

.service-confirmation {
    padding: 20px;
    background: #e8f5e9;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 18px;
    color: #2d6a4f;
    font-weight: 600;
}

.thanks-note {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 35px;
}

.btn-back-home {
    display: inline-block;
    padding: 16px 40px;
    background: #2d6a4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-back-home:hover {
    background: #1b4332;
    transform: translateY(-3px);
}

.page-header-legal {
    margin-top: 120px;
    padding: 60px 10% 40px;
    background: #f8f9fa;
}

.page-header-legal h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #1a3a2e;
}

.last-updated {
    font-size: 15px;
    color: #7f8c8d;
}

.legal-content {
    padding: 60px 10% 100px;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a3a2e;
}

.legal-text h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2d6a4f;
}

.legal-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.legal-text ul {
    margin: 15px 0 25px 25px;
}

.legal-text ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.legal-text a {
    color: #2d6a4f;
    text-decoration: underline;
}

.legal-text a:hover {
    color: #1b4332;
}

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

    .hero-text-offset {
        width: 100%;
        padding: 60px 8%;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        width: 100%;
        height: 50vh;
    }

    .intro-block,
    .about-block-diagonal,
    .contact-info-diagonal {
        flex-direction: column;
    }

    .image-card-float {
        width: 100%;
        height: 400px;
    }

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

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

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

@media (max-width: 768px) {
    .nav-floating {
        width: 95%;
        padding: 12px 20px;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
    }

    .hero-text-offset h1 {
        font-size: 36px;
    }

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

    .values-grid-irregular,
    .steps-contact {
        flex-direction: column;
    }
}