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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2922;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.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: 1rem;
}

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

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

.ad-disclosure {
    background-color: #f4f1ed;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-header {
    position: relative;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: #ffffff;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e3a;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

.nav-links a:hover {
    color: #4a7c59;
}

.asymmetric-layout {
    overflow-x: hidden;
}

.hero-offset {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 3rem;
    background-color: #f9f7f4;
}

.hero-image-wrap {
    position: absolute;
    right: 0;
    top: 0;
    width: 62%;
    height: 100%;
    background-color: #e8e4df;
    z-index: 1;
}

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

.hero-text-block {
    position: relative;
    z-index: 2;
    max-width: 550px;
    background-color: #ffffff;
    padding: 3.5rem;
    margin-left: 5%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-text-block h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a2922;
}

.hero-text-block p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a5c54;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #3d6849;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

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

.intro-left {
    flex: 1;
    padding-right: 2rem;
}

.intro-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2922;
    line-height: 1.3;
}

.intro-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a5c54;
}

.intro-right {
    flex: 1;
    background-color: #e8e4df;
}

.intro-right img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.services-stagger {
    padding: 5rem 3rem;
    background-color: #fefefe;
}

.section-title-offset {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    margin-left: 15%;
    color: #1a2922;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1200px;
}

.service-card.card-left {
    margin-left: 8%;
}

.service-card.card-right {
    margin-left: auto;
    margin-right: 8%;
    flex-direction: row-reverse;
}

.service-card.card-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    background-color: #f4f1ed;
    padding: 3rem;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a2922;
}

.service-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5c54;
    line-height: 1.7;
}

.price-tag {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #4a7c59;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    font-size: 1.1rem;
}

.service-visual {
    flex: 1;
    background-color: #e8e4df;
}

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

.form-section-offset {
    padding: 6rem 3rem;
    background-color: #f9f7f4;
}

.form-container {
    max-width: 700px;
    margin-left: 12%;
    background-color: #ffffff;
    padding: 3rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a2922;
}

.form-intro {
    margin-bottom: 2.5rem;
    color: #4a5c54;
    font-size: 1.05rem;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e3a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    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: #4a7c59;
}

.cta-submit {
    padding: 1rem 2rem;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-submit:hover {
    background-color: #3d6849;
    transform: translateY(-2px);
}

.testimonial-float {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    padding: 5rem 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    background-color: #f4f1ed;
    padding: 2.5rem;
    border-left: 4px solid #4a7c59;
}

.testimonial:first-child {
    margin-top: 2rem;
}

.testimonial:last-child {
    margin-top: -2rem;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #2c3e3a;
    line-height: 1.7;
}

.author {
    font-weight: 600;
    color: #4a7c59;
}

.cta-bottom {
    text-align: center;
    padding: 6rem 3rem;
    background-color: #1a2922;
    color: #ffffff;
}

.cta-bottom h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-bottom p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-secondary:hover {
    background-color: #ffffff;
    color: #1a2922;
}

.main-footer {
    background-color: #2c3e3a;
    color: #ffffff;
    padding: 3rem 3rem 1rem;
}

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

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

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

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #d4d4d4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image-wrap {
        position: relative;
        width: 100%;
        height: 300px;
    }

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

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

    .service-card,
    .service-card.card-right {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .testimonial-float {
        flex-direction: column;
    }

    .testimonial:first-child,
    .testimonial:last-child {
        margin-top: 0;
    }

    .nav-asymmetric {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }
}
