* {
    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: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.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;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

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

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

.btn-cookie-accept:hover {
    background-color: #229954;
}

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

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

.nav-main {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 0 30px;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
    background-color: #f8f9fa;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-menu a:hover {
    color: #3498db;
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 30px;
    overflow: hidden;
}

.hero-offset-block {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text-layer {
    max-width: 580px;
    margin-left: 8%;
}

.hero-text-layer h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text-layer p {
    font-size: 20px;
    color: #555555;
    margin-bottom: 36px;
    line-height: 1.6;
}

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

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

.hero-image-offset {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 800px;
    z-index: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-overlap {
    padding: 120px 30px 80px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
}

.intro-text-block {
    flex: 1;
    padding-left: 60px;
}

.intro-text-block h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

.intro-image-float {
    flex: 0 0 420px;
    position: relative;
    top: -40px;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.intro-image-float img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-grid-asymmetric {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

.section-heading-offset {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-card-large {
    flex: 1 1 calc(50% - 30px);
}

.service-card-wide {
    flex: 1 1 calc(66.666% - 30px);
}

.service-image-wrap {
    height: 240px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.service-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #2c3e50;
    font-weight: 600;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-service-select {
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background-color: #2980b9;
    transform: scale(1.02);
}

.cta-inline-offset {
    padding: 80px 30px;
    background-color: #34495e;
    position: relative;
}

.cta-content-block {
    max-width: 700px;
    margin-left: 15%;
    color: #ffffff;
}

.cta-content-block h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-block p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #34495e;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background-color: #ecf0f1;
    transform: translateX(4px);
}

.process-stacked {
    padding: 100px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-intro {
    text-align: center;
    margin-bottom: 80px;
}

.process-intro h2 {
    font-size: 46px;
    color: #1a1a1a;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.step-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.step-left {
    padding-right: 15%;
}

.step-right {
    flex-direction: row-reverse;
    padding-left: 15%;
}

.step-number {
    flex-shrink: 0;
    font-size: 72px;
    font-weight: 900;
    color: #e8eaed;
    line-height: 1;
}

.step-content h3 {
    font-size: 28px;
    margin-bottom: 14px;
    color: #2c3e50;
    font-weight: 600;
}

.step-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555555;
}

.social-proof-scattered {
    padding: 100px 30px;
    background-color: #f8f9fa;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-block {
    position: absolute;
    max-width: 380px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.testimonial-offset-1 {
    top: 60px;
    left: 8%;
}

.testimonial-offset-2 {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.testimonial-offset-3 {
    bottom: 80px;
    left: 35%;
}

.testimonial-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.form-section-floating {
    padding: 120px 30px;
    background-color: #ecf0f1;
}

.form-container-offset {
    max-width: 650px;
    margin-left: 20%;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

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

.service-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: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #dfe4ea;
    border-radius: 6px;
    font-size: 16px;
    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: #3498db;
}

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

.btn-submit:hover {
    background-color: #229954;
    transform: scale(1.02);
}

.environmental-statement {
    padding: 100px 30px;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.statement-content h2 {
    font-size: 42px;
    margin-bottom: 28px;
    font-weight: 700;
}

.statement-content p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.92;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 30px 30px;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.footer-col-brand {
    flex: 1.5;
}

.footer-col h3 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

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

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

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

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

.footer-disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #888888;
}

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

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

@media (max-width: 1024px) {
    .hero-text-layer h1 {
        font-size: 40px;
    }

    .hero-image-offset {
        width: 60%;
        right: -50px;
    }

    .intro-overlap {
        flex-direction: column;
    }

    .intro-image-float {
        flex: 0 0 auto;
        width: 100%;
        top: 0;
    }

    .service-card {
        flex: 1 1 calc(50% - 30px);
    }

    .social-proof-scattered {
        min-height: auto;
        display: block;
    }

    .testimonial-block {
        position: relative;
        margin-bottom: 30px;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }

    .form-container-offset {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        flex-direction: column;
        gap: 16px;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-text-layer {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-text-layer h1 {
        font-size: 32px;
    }

    .hero-image-offset {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        margin-top: 40px;
    }

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

    .step-left,
    .step-right {
        padding-left: 0;
        padding-right: 0;
    }

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