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

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

.navigation {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 600;
    color: #2d6a4f;
}

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

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

.nav-links a:hover {
    color: #2d6a4f;
}

.hero-section {
    margin-bottom: 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #95d5b2;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    max-width: 800px;
    margin-bottom: 20px;
}

.hero-overlay p {
    color: #ffffff;
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 30px;
}

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

.cta-primary:hover {
    background-color: #1b4332;
}

.intro-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 36px;
    color: #1b263b;
    margin-bottom: 24px;
}

.intro-section p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 20px;
}

.reference {
    color: #2d6a4f;
    text-decoration: none;
    font-weight: 600;
}

.reference:hover {
    text-decoration: underline;
}

.mission-block {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

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

.text-column {
    flex: 1;
}

.text-column h3 {
    font-size: 32px;
    color: #1b263b;
    margin-bottom: 20px;
}

.text-column p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 16px;
}

.image-column {
    flex: 1;
    background-color: #95d5b2;
}

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

.services-intro {
    padding: 80px 40px 40px;
    background-color: #ffffff;
}

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

.services-intro h2 {
    font-size: 40px;
    color: #1b263b;
    margin-bottom: 16px;
}

.services-intro p {
    font-size: 18px;
    color: #6c757d;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    gap: 0;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-image {
    width: 400px;
    flex-shrink: 0;
    background-color: #95d5b2;
}

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

.service-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.service-content p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

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

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

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.form-container p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 32px;
}

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

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

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

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

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

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

.trust-section {
    padding: 60px 40px;
    background-color: #ffffff;
}

.trust-section h3 {
    font-size: 28px;
    color: #1b263b;
    margin-bottom: 16px;
}

.trust-section p {
    font-size: 17px;
    color: #495057;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #fff8e7;
}

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

.disclaimer-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.8;
    font-style: italic;
}

.site-footer {
    background-color: #1b263b;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #95d5b2;
}

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

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

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

.footer-column ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #343a40;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2d6a4f;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #495057;
}

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

.cookie-accept {
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cookie-link {
    color: #2d6a4f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline;
}

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

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

.page-header p {
    font-size: 20px;
    color: #6c757d;
}

.about-intro {
    padding: 80px 40px;
    background-color: #ffffff;
}

.content-wide {
    max-width: 900px;
    margin: 0 auto;
}

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

.text-block p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 20px;
}

.methodology-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.team-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 40px;
    color: #1b263b;
    margin-bottom: 16px;
}

.team-grid {
    max-width: 1000px;
    margin: 40px auto 0;
    display: flex;
    gap: 40px;
}

.team-member {
    flex: 1;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
}

.member-info h4 {
    font-size: 22px;
    color: #2d6a4f;
    margin-bottom: 12px;
}

.member-info p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
}

.values-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-item h4 {
    font-size: 24px;
    color: #2d6a4f;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 17px;
    color: #495057;
    line-height: 1.6;
}

.impact-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.impact-section h2 {
    font-size: 40px;
    color: #1b263b;
    margin-bottom: 50px;
}

.stats-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: #6c757d;
    max-width: 200px;
}

.cta-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background-color: #2d6a4f;
    padding: 60px 40px;
    border-radius: 8px;
}

.cta-box h3 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    color: #d8f3dc;
    margin-bottom: 30px;
}

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

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

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

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

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

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

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

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

.service-detail-content p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-includes {
    margin: 24px 0;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.service-includes h4 {
    font-size: 18px;
    color: #1b263b;
    margin-bottom: 12px;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes ul li {
    font-size: 16px;
    color: #495057;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

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

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

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

.contact-info-section {
    padding: 60px 40px;
    background-color: #ffffff;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 32px;
    color: #1b263b;
    margin-bottom: 32px;
}

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

.contact-item h4 {
    font-size: 18px;
    color: #2d6a4f;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
}

.contact-image {
    flex: 1;
    background-color: #95d5b2;
}

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

.contact-additional {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.contact-additional h3 {
    font-size: 28px;
    color: #1b263b;
    margin-bottom: 20px;
}

.contact-additional p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

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

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

.thanks-message {
    font-size: 20px;
    color: #2d6a4f;
    font-weight: 600;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-highlight {
    color: #2d6a4f;
    font-weight: 600;
}

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

.btn-primary {
    background-color: #2d6a4f;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    background-color: #6c757d;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #495057;
}

.next-steps {
    padding: 80px 40px;
    background-color: #ffffff;
}

.next-steps h2 {
    font-size: 32px;
    color: #1b263b;
    margin-bottom: 40px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

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

.step-content h4 {
    font-size: 20px;
    color: #1b263b;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
}

.legal-page {
    padding: 60px 40px 80px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    color: #1b263b;
    margin-bottom: 12px;
}

.update-date {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #1b263b;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 22px;
    color: #2d6a4f;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content h4 {
    font-size: 18px;
    color: #1b263b;
    margin-top: 20px;
    margin-bottom: 10px;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    color: #495057;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content strong {
    color: #1b263b;
    font-weight: 600;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table thead {
    background-color: #f8f9fa;
}

.cookies-table th {
    padding: 12px;
    text-align: left;
    font-size: 15px;
    color: #1b263b;
    border-bottom: 2px solid #e9ecef;
}

.cookies-table td {
    padding: 12px;
    font-size: 15px;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

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

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

    .hero-overlay p {
        font-size: 16px;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .stats-grid {
        flex-direction: column;
        gap: 40px;
    }

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

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

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