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

.ad-disclosure {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
}

.navbar {
    background-color: #2d5f3f;
    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;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: #a8d5ba;
}

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

.hero-content {
    flex: 1;
}

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

.hero-content p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

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

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

.split-image-left,
.split-image-right {
    flex: 1;
    background-color: #f0f4f1;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.split-content-right,
.split-content-left {
    flex: 1;
}

.split-content-right h2,
.split-content-left h2 {
    font-size: 36px;
    color: #1a3a2e;
    margin-bottom: 20px;
}

.split-content-right p,
.split-content-left p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 15px;
}

.split-content-left-wide {
    flex: 2;
}

.split-image-right-narrow {
    flex: 1;
    background-color: #f0f4f1;
}

.services-showcase {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.services-showcase h2 {
    font-size: 42px;
    text-align: center;
    color: #1a3a2e;
    margin-bottom: 50px;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    width: calc(33.333% - 20px);
    padding: 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    background-color: #f0f4f1;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    color: #1a3a2e;
    margin: 20px 20px 10px;
}

.service-card p {
    font-size: 16px;
    color: #4a5568;
    margin: 0 20px 15px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2d5f3f;
    margin: 15px 20px;
}

.select-service {
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    padding: 12px 0;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #1a3a2e;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    color: #1a3a2e;
    margin-bottom: 15px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
}

.submit-button {
    width: 100%;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #1a3a2e;
}

.disclaimer-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 30px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    font-size: 14px;
    color: #856404;
    line-height: 1.8;
}

.footer {
    background-color: #1a3a2e;
    color: #ffffff;
    padding: 50px 20px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #a8d5ba;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d5f3f;
    color: #a8d5ba;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #2d5f3f;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1a3a2e;
}

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #5a6268;
}

.page-header {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    color: #4a5568;
}

.values-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.values-section h2 {
    font-size: 42px;
    color: #1a3a2e;
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.value-item p {
    font-size: 16px;
    color: #4a5568;
}

.timeline-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.timeline-section h2 {
    font-size: 42px;
    color: #1a3a2e;
    text-align: center;
    margin-bottom: 50px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: flex;
    gap: 30px;
}

.timeline-year {
    font-size: 28px;
    font-weight: 700;
    color: #2d5f3f;
    min-width: 100px;
}

.timeline-content h3 {
    font-size: 22px;
    color: #1a3a2e;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 16px;
    color: #4a5568;
}

.services-detailed {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    color: #1a3a2e;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #4a5568;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: 700;
}

.price-detail {
    font-size: 28px;
    font-weight: 700;
    color: #2d5f3f;
    margin: 25px 0;
}

.select-service-detail {
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-detail:hover {
    background-color: #1a3a2e;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.cta-section {
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

.cta-button-large {
    display: inline-block;
    background-color: #ffffff;
    color: #2d5f3f;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button-large:hover {
    background-color: #a8d5ba;
}

.contact-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-info-block {
    margin-bottom: 60px;
}

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

.contact-details {
    display: flex;
    gap: 40px;
}

.contact-item {
    flex: 1;
}

.contact-item h3 {
    font-size: 22px;
    color: #2d5f3f;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
}

.contact-map {
    background-color: #f0f4f1;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
}

.how-to-reach {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.how-to-reach h2 {
    font-size: 36px;
    color: #1a3a2e;
    margin-bottom: 30px;
    text-align: center;
}

.directions-grid {
    display: flex;
    gap: 30px;
}

.direction-item {
    flex: 1;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.direction-item h3 {
    font-size: 22px;
    color: #2d5f3f;
    margin-bottom: 10px;
}

.direction-item p {
    font-size: 16px;
    color: #4a5568;
}

.thanks-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.thanks-container {
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 8px;
}

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

.thanks-icon svg {
    margin: 0 auto;
    display: block;
}

.thanks-container h1 {
    font-size: 42px;
    color: #1a3a2e;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
}

.service-info {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
}

.service-info p {
    margin: 0;
    color: #2d5f3f;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.button-primary {
    display: inline-block;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.button-primary:hover {
    background-color: #1a3a2e;
}

.button-secondary {
    display: inline-block;
    background-color: #6c757d;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.button-secondary:hover {
    background-color: #5a6268;
}

.next-steps {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.next-steps h2 {
    font-size: 36px;
    color: #1a3a2e;
    text-align: center;
    margin-bottom: 50px;
}

.steps-grid {
    display: flex;
    gap: 30px;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2d5f3f;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 22px;
    color: #1a3a2e;
    margin-bottom: 15px;
}

.step-item p {
    font-size: 16px;
    color: #4a5568;
}

.legal-page {
    max-width: 900px;
    margin: 40px auto 80px;
    padding: 0 20px;
}

.legal-page h1 {
    font-size: 42px;
    color: #1a3a2e;
    margin-bottom: 10px;
}

.legal-page .updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: #2d5f3f;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-page h3 {
    font-size: 22px;
    color: #2d5f3f;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-page p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-page ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-page ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.8;
}

.legal-page a {
    color: #2d5f3f;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

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

    .split-section {
        flex-direction: column;
    }

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

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

    .service-card {
        width: 100%;
    }

    .service-detail {
        flex-direction: column;
    }

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

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

    .contact-details {
        flex-direction: column;
    }

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

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

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

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

    .thanks-actions {
        flex-direction: column;
    }
}