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

:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2c;
    --light-green: #7ba65d;
    --accent-earth: #8b6f47;
    --bg-light: #f8f9f5;
    --bg-cream: #faf8f3;
    --text-dark: #1a2e0a;
    --text-gray: #5a5a5a;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-green);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

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

.btn-accept {
    background: var(--white);
    color: var(--primary-green);
}

.btn-accept:hover {
    background: var(--bg-light);
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.main-header {
    background: var(--white);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-gray);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--text-gray);
    border-radius: 3px;
}

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

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--secondary-green);
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-cream);
}

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

.hero-text-block {
    max-width: 600px;
    margin-left: 5%;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.hero-text-block p {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.hero-image-overlap {
    position: absolute;
    right: -10%;
    top: 10%;
    width: 60%;
    height: 80%;
    z-index: 1;
    background: var(--light-green);
}

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

.intro-overlap {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-card-left {
    flex: 1;
    padding: 3rem;
    background: var(--bg-light);
    transform: translateX(-5rem);
    z-index: 2;
}

.intro-card-left h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-card-left p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
}

.intro-image-right {
    flex: 1;
    position: relative;
    background: var(--accent-earth);
}

.intro-image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 500px;
}

.services-asymmetric {
    padding: 6rem 2rem;
    background: var(--white);
}

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

.services-header-offset h2 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.services-header-offset p {
    font-size: 1.25rem;
    color: var(--text-gray);
}

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

.service-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-card.large {
    width: calc(55% - 1rem);
    margin-top: 2rem;
}

.service-card.offset {
    width: calc(40% - 1rem);
    margin-top: -3rem;
}

.service-card.wide {
    width: calc(60% - 1rem);
    margin-left: 10%;
}

.service-card.compact {
    width: calc(35% - 1rem);
    margin-top: -2rem;
}

.service-card.elevated {
    width: calc(50% - 1rem);
    margin-left: auto;
    margin-right: 5%;
    margin-top: -4rem;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--light-green);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-info p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-green);
    display: block;
}

.cta-diagonal {
    position: relative;
    padding: 8rem 2rem;
    background: var(--primary-green);
    overflow: hidden;
}

.cta-content-block {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 10%;
    color: var(--white);
}

.cta-content-block h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content-block p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background: var(--bg-light);
    transform: translateX(5px);
}

.cta-image-overlay {
    position: absolute;
    right: -5%;
    top: 0;
    width: 50%;
    height: 100%;
    opacity: 0.2;
    background: var(--accent-earth);
}

.cta-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-section {
    padding: 8rem 2rem;
    background: var(--bg-light);
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: rotate(-0.5deg);
}

.form-intro {
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    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: var(--secondary-green);
}

.submit-btn {
    padding: 1.125rem 2.5rem;
    background: var(--secondary-green);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.trust-section {
    padding: 6rem 2rem;
    background: var(--bg-cream);
}

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

.trust-content h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.disclaimer-box {
    background: var(--white);
    padding: 2rem;
    border-left: 4px solid var(--accent-earth);
    text-align: left;
    margin-top: 2rem;
}

.disclaimer-box p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.main-footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

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

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .service-card.large,
    .service-card.offset,
    .service-card.wide,
    .service-card.compact,
    .service-card.elevated {
        width: calc(50% - 1rem);
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
    }

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

    .intro-card-left {
        transform: none;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .hero-text-block {
        margin-left: 0;
    }

    .service-card.large,
    .service-card.offset,
    .service-card.wide,
    .service-card.compact,
    .service-card.elevated {
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
}