* {
    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: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2e7d32;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #2e7d32;
}

.split-container {
    display: flex;
    min-height: 500px;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.hero-split {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1b5e20;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: #2e7d32;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #1b5e20;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

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

.value-proposition {
    background: #fff;
}

.content-block {
    max-width: 540px;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1b5e20;
    line-height: 1.3;
}

.content-block p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.benefit-list {
    list-style: none;
    margin-top: 30px;
}

.benefit-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: 700;
    font-size: 18px;
}

.services-section {
    background: #f9f9f9;
    padding: 80px 0;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1b5e20;
}

.section-header-center p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 240px;
}

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

.service-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1b5e20;
}

.service-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 16px;
}

.select-service-btn {
    background: #2e7d32;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #1b5e20;
}

.select-service-btn.selected {
    background: #1b5e20;
}

.trust-section {
    background: #fff;
    padding: 80px 0;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 540px;
}

.testimonial-card {
    background: #f5f5f5;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #2e7d32;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.7;
}

.testimonial-card cite {
    font-style: normal;
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.disclaimer-text {
    font-size: 13px;
    color: #888;
    margin-top: 24px;
    padding: 16px;
    background: #f9f9f9;
    border-radius: 4px;
    line-height: 1.6;
}

.form-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #f5f5f5 100%);
    padding: 80px 0;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1b5e20;
}

.form-intro p {
    font-size: 16px;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2e7d32;
}

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.submit-btn {
    background: #2e7d32;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #1b5e20;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.references-section {
    background: #f9f9f9;
    padding: 60px 0;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1b5e20;
}

.references-list {
    list-style: decimal;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 14px;
}

.references-list a {
    color: #2e7d32;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.main-footer {
    background: #2e2e2e;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-col p,
.footer-col ul {
    font-size: 14px;
    color: #ccc;
}

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

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

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

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2e2e2e;
    color: #fff;
    padding: 24px;
    z-index: 2000;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #66bb6a;
}

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

.btn-primary {
    background: #2e7d32;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1b5e20;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #fff;
    color: #2e2e2e;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e9 0%, #f5f5f5 100%);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    padding: 60px 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 64px;
    color: #2e7d32;
    margin-bottom: 24px;
}

.thanks-content h1 {
    font-size: 36px;
    color: #1b5e20;
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 32px;
}

.thanks-content a {
    display: inline-block;
    background: #2e7d32;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-content a:hover {
    background: #1b5e20;
}

.page-header {
    background: linear-gradient(135deg, #e8f5e9 0%, #f5f5f5 100%);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #1b5e20;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #666;
}

.content-page {
    padding: 60px 0;
}

.content-page h2 {
    font-size: 32px;
    color: #1b5e20;
    margin: 40px 0 20px;
}

.content-page h3 {
    font-size: 24px;
    color: #2e7d32;
    margin: 30px 0 16px;
}

.content-page p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-page ul,
.content-page ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.content-page li {
    margin-bottom: 8px;
    color: #555;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #2e7d32;
}

.info-card h3 {
    font-size: 20px;
    color: #1b5e20;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
    }

    .split-container.reverse {
        flex-direction: column;
    }

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

    .content-block h2 {
        font-size: 28px;
    }

    .section-header-center h2 {
        font-size: 32px;
    }

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

    .footer-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-wrapper {
        padding: 32px 24px;
    }
}
