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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #2c5530;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

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

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

.nav-links a:hover {
    opacity: 0.8;
}

.hero-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f5f8f5;
}

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

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #444;
}

.hero-image {
    flex: 1;
    background-color: #e8ede8;
}

.hero-image img {
    width: 100%;
    height: 100%;
}

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

.cta-button:hover {
    background-color: #3a6a3e;
}

.cta-button-small {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4a7c4e;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin-top: 16px;
}

.cta-button-small:hover {
    background-color: #3a6a3e;
}

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

.cta-button-secondary:hover {
    background-color: #4a7c4e;
    color: #fff;
}

.info-section {
    padding: 80px 20px;
    background-color: #fff;
}

.split-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a3d1f;
}

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

.image-block {
    flex: 1;
    background-color: #e8ede8;
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.benefits-section {
    padding: 80px 20px;
    background-color: #f9faf9;
}

.benefits-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a3d1f;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    padding: 40px;
    background-color: #fff;
    border-left: 4px solid #4a7c4e;
}

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

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

.split-reverse {
    padding: 80px 20px;
    background-color: #fff;
}

.image-block-left {
    flex: 1;
    background-color: #e8ede8;
}

.image-block-left img {
    width: 100%;
    height: auto;
    display: block;
}

.content-block-right {
    flex: 1;
}

.content-block-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a3d1f;
}

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

.mistakes-list {
    list-style: none;
    margin: 24px 0;
}

.mistakes-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 17px;
    color: #555;
}

.mistakes-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #d9534f;
    font-size: 24px;
    font-weight: bold;
}

.services-selection {
    padding: 80px 20px;
    background-color: #f5f8f5;
}

.services-selection h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a3d1f;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #666;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-option {
    flex: 1 1 calc(33.333% - 20px);
    padding: 40px;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s;
}

.service-option:hover {
    border-color: #4a7c4e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-option h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c5530;
}

.service-option p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #666;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a7c4e;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px;
    background-color: #4a7c4e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #3a6a3e;
}

.form-section {
    padding: 80px 20px;
    background-color: #fff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    background-color: #f9faf9;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a3d1f;
}

.selected-service-info {
    font-size: 18px;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #e8f4e9;
    border-left: 4px solid #4a7c4e;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    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: #4a7c4e;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #4a7c4e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #3a6a3e;
}

.trust-section {
    padding: 80px 20px;
    background-color: #2c5530;
    color: #fff;
}

.trust-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.testimonials {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
}

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

.testimonial-author {
    font-size: 15px;
    color: #d0e0d0;
}

.main-footer {
    background-color: #1a3d1f;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #d0e0d0;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

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

.footer-section ul li a:hover {
    color: #fff;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: rgba(255,255,255,0.05);
    border-left: 4px solid #4a7c4e;
    font-size: 14px;
    line-height: 1.6;
    color: #d0e0d0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    color: #d0e0d0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c5530;
    color: #fff;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
}

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

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

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

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

.cookie-accept {
    background-color: #4a7c4e;
    color: #fff;
}

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

.cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.page-hero {
    padding: 80px 20px;
    background-color: #f5f8f5;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    color: #666;
}

.about-intro {
    padding: 80px 20px;
    background-color: #fff;
}

.values-section {
    padding: 80px 20px;
    background-color: #f9faf9;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a3d1f;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 1 1 calc(50% - 15px);
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    border: 2px solid #e8ede8;
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.team-approach {
    padding: 80px 20px;
    background-color: #fff;
}

.team-approach h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a3d1f;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.approach-step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #4a7c4e;
    margin-bottom: 16px;
}

.approach-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5530;
}

.approach-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.cta-section {
    padding: 80px 20px;
    background-color: #4a7c4e;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
}

.services-detailed {
    padding: 60px 20px;
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail .split-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.service-info {
    flex: 1;
    padding: 40px;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a3d1f;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #4a7c4e;
    margin-bottom: 24px;
}

.service-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #555;
}

.service-info h4 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #2c5530;
}

.service-info ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-info ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    color: #666;
}

.service-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c4e;
    font-weight: bold;
}

.service-image {
    flex: 1;
    background-color: #e8ede8;
}

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

.service-detail.reverse .split-layout {
    flex-direction: row-reverse;
}

.additional-info {
    padding: 80px 20px;
    background-color: #f5f8f5;
}

.additional-info h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a3d1f;
}

.info-boxes {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.info-box {
    flex: 1;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
}

.info-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c5530;
}

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

.contact-page {
    padding: 60px 20px;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a3d1f;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c5530;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}

.no-link {
    color: #666;
}

.contact-note {
    padding: 24px;
    background-color: #f5f8f5;
    border-left: 4px solid #4a7c4e;
    margin-top: 40px;
}

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

.contact-image-block {
    flex: 1;
    background-color: #e8ede8;
}

.contact-image-block img {
    width: 100%;
    height: 100%;
}

.location-section {
    padding: 60px 20px;
    background-color: #f9faf9;
    text-align: center;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a3d1f;
}

.location-section p {
    font-size: 17px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 24px;
}

.location-note {
    max-width: 800px;
    margin: 24px auto 0;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
}

.location-note p {
    font-size: 15px;
    color: #666;
}

.faq-section {
    padding: 60px 20px;
    background-color: #fff;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a3d1f;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 32px;
    padding: 32px;
    background-color: #f9faf9;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5530;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.thanks-page {
    padding: 100px 20px;
    background-color: #f5f8f5;
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    padding: 60px;
    border-radius: 8px;
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-container h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a3d1f;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #666;
}

.selected-service-summary {
    padding: 24px;
    background-color: #e8f4e9;
    border-left: 4px solid #4a7c4e;
    margin-bottom: 40px;
    text-align: left;
}

.selected-service-summary h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c5530;
}

.selected-service-summary p {
    font-size: 17px;
    color: #666;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c5530;
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 16px;
    color: #666;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a7c4e;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.legal-page {
    padding: 60px 20px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a3d1f;
}

.last-updated {
    font-size: 15px;
    color: #999;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #2c5530;
}

.legal-container h3 {
    font-size: 22px;
    margin: 32px 0 12px;
    color: #2c5530;
}

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

.legal-container ul {
    margin: 16px 0 16px 24px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #555;
}

.legal-container a {
    color: #4a7c4e;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #3a6a3e;
}

@media (max-width: 768px) {
    .hero-split,
    .split-layout,
    .testimonials,
    .footer-content,
    .approach-container,
    .info-boxes,
    .contact-split,
    .thanks-actions {
        flex-direction: column;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 32px;
    }

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

    .benefits-section h2,
    .values-section h2,
    .trust-section h2,
    .team-approach h2,
    .cta-section h2,
    .additional-info h2 {
        font-size: 32px;
    }

    .benefit-card,
    .value-item,
    .service-option {
        flex: 1 1 100%;
    }

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

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

    .form-container {
        padding: 30px;
    }

    .service-detail.reverse .split-layout {
        flex-direction: column;
    }
}