* {
    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: #1a1a1a;
    background-color: #fefefe;
}

.ad-notice {
    background-color: #2c5530;
    color: #ffffff;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 6%;
    background-color: rgba(255, 255, 255, 0.98);
    position: sticky;
    top: 37px;
    z-index: 999;
    border-bottom: 1px solid #e5e5e5;
}

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: #2c5530;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #2c5530;
}

.hero-asymmetric {
    display: flex;
    flex-direction: column;
    min-height: 88vh;
    position: relative;
    background-color: #f9f9f7;
}

.hero-content-offset {
    padding: 80px 6% 60px 8%;
    max-width: 680px;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content-offset p {
    font-size: 22px;
    margin-bottom: 38px;
    color: #444;
    line-height: 1.5;
}

.hero-image-block {
    position: absolute;
    right: 0;
    top: 15%;
    width: 52%;
    height: 70%;
    overflow: hidden;
    background-color: #d4e5d7;
}

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

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

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5530;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c5530;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2c5530;
    color: #ffffff;
}

.intro-offset {
    display: flex;
    padding: 110px 6% 90px;
    gap: 80px;
    align-items: flex-start;
    background-color: #ffffff;
}

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

.intro-text-narrow h2 {
    font-size: 38px;
    margin-bottom: 28px;
    line-height: 1.25;
}

.intro-text-narrow p {
    font-size: 19px;
    margin-bottom: 22px;
    color: #333;
}

.intro-image-overlap {
    flex: 0 0 420px;
    margin-top: 60px;
    background-color: #e8f0e9;
}

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

.services-grid-irregular {
    padding: 100px 6% 90px;
    background-color: #f4f4f2;
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 55px;
    margin-left: 3%;
    font-weight: 700;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.service-card {
    background-color: #ffffff;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #d8e7da;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 14px;
}

.service-card p {
    padding: 0 24px;
    margin-bottom: 18px;
    color: #333;
    font-size: 16px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5530;
    padding: 0 24px;
    margin-bottom: 20px;
    display: block;
}

.service-card .select-service {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: #2c5530;
    color: #ffffff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.service-card .select-service:hover {
    background-color: #234425;
}

.card-large {
    flex: 1 1 calc(50% - 14px);
    min-width: 340px;
}

.card-medium {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
}

.card-small {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
}

.trust-section-diagonal {
    padding: 95px 8% 95px 12%;
    background: linear-gradient(135deg, #2c5530 0%, #3d6e42 100%);
    color: #ffffff;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin: 60px 0;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 26px;
}

.trust-content p {
    font-size: 20px;
    margin-bottom: 50px;
    max-width: 680px;
}

.trust-metrics {
    display: flex;
    gap: 70px;
    flex-wrap: wrap;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 16px;
    opacity: 0.9;
}

.testimonial-scattered {
    padding: 90px 6%;
    background-color: #ffffff;
}

.testimonial {
    max-width: 620px;
    margin-bottom: 60px;
    padding: 36px;
    background-color: #f9f9f7;
    border-left: 4px solid #2c5530;
}

.testimonial-left {
    margin-left: 0;
}

.testimonial-right {
    margin-left: auto;
}

.testimonial p {
    font-size: 19px;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial cite {
    font-style: normal;
    color: #666;
    font-size: 15px;
}

.form-section-offset {
    padding: 100px 6%;
    background-color: #f4f4f2;
}

.form-container {
    max-width: 580px;
    margin-left: 8%;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 18px;
}

.form-container > p {
    margin-bottom: 38px;
    font-size: 18px;
    color: #444;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: 2px solid #2c5530;
    border-color: #2c5530;
}

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

.btn-submit:hover {
    background-color: #234425;
}

.final-cta-irregular {
    padding: 110px 10% 110px 6%;
    background-color: #ffffff;
    max-width: 720px;
}

.final-cta-irregular h2 {
    font-size: 44px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.final-cta-irregular p {
    font-size: 20px;
    margin-bottom: 34px;
    color: #444;
}

.footer-split {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 6% 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 24px 6%;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #2c5530;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #000000;
}

.about-hero-offset {
    display: flex;
    padding: 90px 6%;
    gap: 70px;
    align-items: center;
    background-color: #f9f9f7;
}

.about-intro {
    flex: 1;
    max-width: 560px;
}

.about-intro h1 {
    font-size: 48px;
    margin-bottom: 26px;
    line-height: 1.2;
}

.about-intro p {
    font-size: 20px;
    color: #333;
}

.about-image-main {
    flex: 0 0 440px;
    background-color: #d8e7da;
}

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

.about-story-irregular {
    padding: 90px 6%;
    background-color: #ffffff;
}

.story-block {
    max-width: 680px;
    margin-bottom: 70px;
}

.story-block:nth-child(odd) {
    margin-left: 0;
}

.story-block:nth-child(even) {
    margin-left: auto;
}

.story-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.story-block p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #333;
}

.story-image-overlap {
    max-width: 500px;
    margin: 50px auto;
    background-color: #e8f0e9;
}

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

.values-section-cards {
    padding: 90px 6%;
    background-color: #f4f4f2;
}

.values-section-cards h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: #ffffff;
    padding: 38px;
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c5530;
}

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

.team-highlight-offset {
    padding: 90px 10% 90px 6%;
    background-color: #ffffff;
    max-width: 760px;
}

.team-highlight-offset h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.team-highlight-offset p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #333;
}

.about-cta-diagonal {
    padding: 90px 6%;
    background: linear-gradient(135deg, #3d6e42 0%, #2c5530 100%);
    color: #ffffff;
    text-align: center;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 92%);
    margin: 60px 0 0;
}

.about-cta-diagonal h2 {
    font-size: 40px;
    margin-bottom: 32px;
}

.services-intro-asymmetric {
    padding: 90px 10% 80px 6%;
    background-color: #f9f9f7;
    max-width: 780px;
}

.services-intro-asymmetric h1 {
    font-size: 50px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.services-intro-asymmetric p {
    font-size: 20px;
    color: #444;
}

.services-detailed {
    padding: 60px 6% 90px;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 90px;
    align-items: flex-start;
}

.card-offset-left {
    flex-direction: row;
}

.card-offset-right {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 460px;
    background-color: #e8f0e9;
}

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

.service-content {
    flex: 1;
    padding-top: 20px;
}

.service-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.service-content > p {
    font-size: 18px;
    margin-bottom: 26px;
    color: #333;
}

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

.service-includes li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #2c5530;
}

.service-content .select-service {
    padding: 14px 32px;
    background-color: #2c5530;
    color: #ffffff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.service-content .select-service:hover {
    background-color: #234425;
}

.services-cta-offset {
    padding: 90px 6% 90px 10%;
    background-color: #f4f4f2;
    max-width: 720px;
}

.services-cta-offset h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.services-cta-offset p {
    font-size: 19px;
    margin-bottom: 32px;
    color: #444;
}

.contact-layout-asymmetric {
    padding: 90px 6%;
    background-color: #f9f9f7;
    position: relative;
}

.contact-intro {
    max-width: 600px;
    margin-bottom: 70px;
}

.contact-intro h1 {
    font-size: 48px;
    margin-bottom: 22px;
}

.contact-intro p {
    font-size: 20px;
    color: #444;
}

.contact-details-offset {
    max-width: 580px;
    margin-bottom: 60px;
}

.contact-details-offset h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.contact-info-block {
    margin-bottom: 38px;
}

.contact-info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5530;
}

.contact-info-block p {
    font-size: 17px;
    color: #333;
}

.email-display {
    font-weight: 500;
}

.contact-image-overlap {
    max-width: 480px;
    margin-left: auto;
    background-color: #d8e7da;
}

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

.contact-map-section {
    padding: 90px 6%;
    background-color: #ffffff;
    max-width: 680px;
}

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

.contact-map-section p {
    font-size: 18px;
    color: #444;
}

.thanks-container {
    padding: 100px 6%;
    min-height: 60vh;
    background-color: #f9f9f7;
}

.thanks-content {
    max-width: 680px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c5530;
}

.thanks-content > p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #444;
}

.service-confirmation {
    padding: 24px;
    background-color: #e8f0e9;
    margin-bottom: 50px;
    border-left: 4px solid #2c5530;
    font-size: 18px;
}

.thanks-next-steps {
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.thanks-next-steps ol {
    padding-left: 22px;
}

.thanks-next-steps li {
    font-size: 17px;
    margin-bottom: 14px;
    color: #333;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-content {
    padding: 80px 6%;
    max-width: 920px;
    margin: 0 auto;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-section {
    margin-bottom: 44px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c5530;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #333;
}

.legal-section p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #333;
    line-height: 1.7;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.6;
}

.legal-updated {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 50px;
}

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

    .hero-image-block {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
    }

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

    .intro-image-overlap {
        margin-top: 0;
    }

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

    .trust-metrics {
        gap: 40px;
    }

    .form-container {
        margin-left: 0;
    }

    .about-hero-offset {
        flex-direction: column;
    }

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

    .service-detail-card {
        flex-direction: column;
        gap: 30px;
    }

    .card-offset-right {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }
}