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

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

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

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

.cookie-content a {
    color: #7FB069;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #7FB069;
    color: #ffffff;
}

.btn-accept:hover {
    background: #6a9557;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D5016;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.ad-notice {
    font-size: 0.85rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    background: #f5f5f5;
    border-radius: 4px;
}

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

.nav-right a:hover {
    color: #7FB069;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 5%;
    background: #f9fafb;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.hero-right {
    flex: 1;
    background: #e8ede7;
    height: 85vh;
    overflow: hidden;
}

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

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

.cta-primary:hover, .cta-secondary:hover {
    background: #1f3a0f;
    transform: translateY(-2px);
}

.cta-secondary {
    background: #7FB069;
}

.cta-secondary:hover {
    background: #6a9557;
}

.intro-alternating {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.intro-left {
    flex: 1;
    background: #f0f4ee;
}

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

.intro-right {
    flex: 1;
}

.intro-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.services-grid {
    padding: 6rem 5%;
    background: #ffffff;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #4a5568;
}

.service-cards-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 400px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.card-image {
    background: #e8ede7;
    height: 250px;
    overflow: hidden;
}

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2D5016;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.price {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2D5016;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.testimonial-split {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background: #f9fafb;
    align-items: center;
}

.testimonial-left {
    flex: 1;
}

.testimonial-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

blockquote {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border-left: 4px solid #7FB069;
}

blockquote p {
    font-size: 1.1rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: #2D5016;
}

.testimonial-right {
    flex: 1;
    background: #e8ede7;
}

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

.form-split {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background: #ffffff;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-left p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.form-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 6px;
}

.form-info p {
    margin-bottom: 0.75rem;
}

.form-right {
    flex: 1;
}

.contact-form {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    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: #7FB069;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #2D5016;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1f3a0f;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 3rem 5%;
    background: #f0f4ee;
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
}

.footer-split {
    display: flex;
    padding: 4rem 5%;
    background: #1a1a1a;
    color: #ffffff;
    gap: 4rem;
}

.footer-left {
    flex: 1;
}

.footer-left h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #7FB069;
}

.footer-left p {
    margin-bottom: 1rem;
    color: #d1d5db;
}

.footer-email {
    color: #d1d5db;
}

.footer-right {
    flex: 1;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

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

.footer-links a:hover {
    color: #7FB069;
}

.footer-copy {
    font-size: 0.9rem;
    color: #9ca3af;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-alternating,
    .testimonial-split,
    .form-split {
        flex-direction: column;
    }

    .hero-right {
        height: 400px;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

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

    .footer-split {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-left h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
    }
}