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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2a3439;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 52, 57, 0.97);
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    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: 12px;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #4a9d5f;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #3d8450;
}

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

.btn-cookie-alt:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header-main {
    background: #ffffff;
    border-bottom: 1px solid #e5e9eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ad-disclosure {
    background: #f7f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6b7780;
    border-bottom: 1px solid #e5e9eb;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2a3439;
}

.nav-main {
    display: flex;
    gap: 32px;
}

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

.nav-main a:hover {
    color: #4a9d5f;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    background: #f7f9fa;
    position: relative;
}

.hero-offset-left {
    flex: 0 0 42%;
    display: flex;
    align-items: center;
    padding: 80px 60px 80px 80px;
    background: #ffffff;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    z-index: 2;
}

.hero-text-block {
    max-width: 520px;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #2a3439;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6970;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    background: #4a9d5f;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #3d8450;
    transform: translateY(-2px);
}

.hero-offset-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #d4e4d8;
}

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

.intro-scattered {
    display: flex;
    padding: 120px 80px;
    gap: 80px;
    align-items: center;
    background: #ffffff;
}

.intro-left-card {
    flex: 0 0 45%;
    padding: 50px;
    background: #f7f9fa;
    border-left: 6px solid #4a9d5f;
    transform: translateY(-40px);
}

.intro-left-card h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2a3439;
    line-height: 1.3;
}

.intro-left-card p {
    font-size: 17px;
    color: #5a6970;
    line-height: 1.8;
}

.intro-right-visual {
    flex: 1;
    position: relative;
    transform: translateY(40px);
}

.intro-right-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #d4e4d8;
    object-fit: cover;
}

.floating-stat {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #4a9d5f;
    color: #ffffff;
    padding: 24px 32px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(74, 157, 95, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    margin-top: 4px;
}

.services-offset {
    padding: 100px 80px 120px;
    background: linear-gradient(135deg, #f7f9fa 0%, #ffffff 100%);
}

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

.services-header-block h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #2a3439;
}

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

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    flex: 0 0 calc(55% - 15px);
}

.card-small {
    flex: 0 0 calc(45% - 15px);
    transform: translateY(60px);
}

.card-medium {
    flex: 0 0 calc(40% - 15px);
}

.card-offset {
    flex: 0 0 calc(35% - 15px);
    transform: translateY(-40px);
}

.card-tall {
    flex: 0 0 calc(25% - 15px);
    transform: translateY(80px);
}

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

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2a3439;
}

.service-content p {
    font-size: 15px;
    color: #5a6970;
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a9d5f;
    margin-bottom: 16px;
}

.btn-select-service {
    background: #4a9d5f;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: #3d8450;
}

.trust-section-diagonal {
    padding: 140px 80px;
    background: #2a3439;
    color: #ffffff;
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
    margin: 80px 0;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.testimonials-staggered {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 36px 40px;
    border-radius: 8px;
    border-left: 4px solid #4a9d5f;
}

.box-left {
    margin-right: 200px;
}

.box-right {
    margin-left: 200px;
}

.box-center {
    margin: 0 100px;
}

.testimonial-box p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-box cite {
    font-size: 14px;
    font-style: normal;
    color: #a8b4bb;
}

.form-section-offset {
    padding: 100px 80px;
    background: #f7f9fa;
}

.form-container {
    max-width: 700px;
    margin-left: 15%;
    background: #ffffff;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2a3439;
}

.form-intro p {
    font-size: 16px;
    color: #5a6970;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2a3439;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e9eb;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background: #4a9d5f;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 8px;
}

.btn-submit:hover {
    background: #3d8450;
}

.why-choose-scattered {
    display: flex;
    padding: 100px 80px;
    gap: 100px;
    align-items: center;
    background: #ffffff;
}

.why-block-left {
    flex: 0 0 40%;
    transform: translateX(60px);
}

.why-block-left h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #2a3439;
    line-height: 1.25;
}

.why-block-left p {
    font-size: 17px;
    color: #5a6970;
    line-height: 1.8;
}

.why-visual-right {
    flex: 1;
    transform: translateX(-60px);
}

.why-visual-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    background: #d4e4d8;
    object-fit: cover;
}

.footer-asymmetric {
    background: #2a3439;
    color: #a8b4bb;
    padding: 80px 80px 40px;
}

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

.footer-col-wide {
    flex: 2;
}

.footer-col h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-col h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.6;
    color: #8a969d;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #3d4d54;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #3d4d54;
}

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

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background: #f7f9fa;
    border-radius: 10px;
}

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

.thanks-container p {
    font-size: 18px;
    color: #5a6970;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 32px;
    background: #4a9d5f;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-container .btn-home:hover {
    background: #3d8450;
}

.page-header {
    background: linear-gradient(135deg, #2a3439 0%, #3d4d54 100%);
    color: #ffffff;
    padding: 80px 80px 60px;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    color: #d4dce0;
}

.page-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.page-content h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2a3439;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2a3439;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6970;
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.page-content ul li,
.page-content ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6970;
    margin-bottom: 8px;
}

.about-hero {
    display: flex;
    padding: 100px 80px;
    gap: 80px;
    align-items: center;
    background: #f7f9fa;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2a3439;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6970;
    margin-bottom: 20px;
}

.about-image {
    flex: 0 0 45%;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background: #d4e4d8;
    object-fit: cover;
}

.services-list {
    padding: 80px 80px;
    background: #ffffff;
}

.services-list h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #2a3439;
}

.contact-page {
    padding: 80px 80px;
    background: #f7f9fa;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2a3439;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2a3439;
    margin-bottom: 8px;
}

.info-block p {
    font-size: 16px;
    color: #5a6970;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background: #d4e4d8;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a6970;
}

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

    .hero-offset-left {
        clip-path: none;
        flex: none;
        width: 100%;
    }

    .hero-offset-right {
        height: 400px;
    }

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

    .service-card {
        flex: none !important;
        width: 100%;
        transform: none !important;
    }

    .intro-scattered,
    .why-choose-scattered,
    .about-hero,
    .contact-grid {
        flex-direction: column;
    }

    .testimonial-box {
        margin: 0 !important;
    }
}

@media (max-width: 768px) {
    .header-container,
    .services-offset,
    .form-section-offset,
    .page-content {
        padding-left: 20px;
        padding-right: 20px;
    }

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

    .services-header-block {
        margin-left: 0;
    }
}