* {
    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;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #66bb6a;
}

.ad-notice {
    color: #b0bec5;
    font-size: 0.85rem;
    padding-left: 1.5rem;
    border-left: 1px solid #455a64;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #f5f7fa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background-color: #1a3a2e;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #eceff1;
}

.hero-image {
    flex: 1;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.split-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

.split-content {
    flex: 1;
    padding: 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.split-image {
    flex: 1;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.intro-section {
    background-color: #f5f7fa;
}

.intro-section .split-content {
    background-color: #f5f7fa;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
    font-weight: 700;
    line-height: 1.3;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #455a64;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #66bb6a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.cta-primary:hover {
    background-color: #4caf50;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a3a2e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.cta-secondary:hover {
    background-color: #2d5a4a;
}

.link-secondary {
    color: #1a3a2e;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-bottom: 2px solid #66bb6a;
    display: inline-block;
    margin-top: 1rem;
    transition: border-color 0.3s ease;
}

.link-secondary:hover {
    border-color: #1a3a2e;
}

.services-preview {
    background-color: #ffffff;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-card {
    padding: 2rem;
    background-color: #f5f7fa;
    border-left: 4px solid #66bb6a;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a3a2e;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.service-card .price {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #66bb6a;
}

.impact-section {
    background-color: #f5f7fa;
}

.impact-section .split-content {
    background-color: #f5f7fa;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #1a3a2e;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.form-container h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #eceff1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    font-size: 1rem;
    border: 2px solid #455a64;
    border-radius: 4px;
    background-color: #ffffff;
    color: #2c3e50;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1.1rem 2.5rem;
    background-color: #66bb6a;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #4caf50;
}

.main-footer {
    background-color: #263238;
    color: #eceff1;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: #b0bec5;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

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

.footer-column a:hover {
    color: #66bb6a;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #37474f;
    text-align: center;
}

.footer-bottom p {
    color: #90a4ae;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem !important;
    color: #78909c !important;
    font-style: italic;
    margin-top: 1rem !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #263238;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    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: 2rem;
}

.cookie-content p {
    color: #eceff1;
    font-size: 0.95rem;
    margin: 0;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #66bb6a;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #4caf50;
}

.cookie-reject {
    background-color: #546e7a;
    color: #ffffff;
}

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

.page-header {
    background-color: #1a3a2e;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    font-size: 3rem;
}

.about-intro,
.methodology-section,
.values-section,
.expertise-section {
    padding: 0;
}

.service-detail {
    padding: 0;
}

.service-detail.alt {
    background-color: #f5f7fa;
}

.service-detail.alt .split-content {
    background-color: #f5f7fa;
}

.pricing-box {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f5f7fa;
    border-left: 4px solid #66bb6a;
}

.service-detail.alt .pricing-box {
    background-color: #ffffff;
}

.price-large {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #66bb6a;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.95rem;
    color: #546e7a;
    margin: 0;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #1a3a2e;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #eceff1;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-section {
    padding: 0;
}

.contact-details {
    margin: 2.5rem 0;
}

.detail-block {
    margin-bottom: 2.5rem;
}

.detail-block h3 {
    font-size: 1.3rem;
    color: #1a3a2e;
    margin-bottom: 0.8rem;
}

.detail-block p {
    margin-bottom: 0.3rem;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f5f7fa;
    border-left: 4px solid #66bb6a;
}

.contact-note a {
    color: #1a3a2e;
    font-weight: 600;
}

.location-section {
    background-color: #f5f7fa;
}

.location-section .split-content {
    background-color: #f5f7fa;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f5f7fa;
}

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

.thanks-container h1 {
    color: #1a3a2e;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.thanks-container a {
    color: #1a3a2e;
    font-weight: 600;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.legal-page {
    padding: 2rem 2rem 4rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    color: #1a3a2e;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.updated {
    color: #78909c;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2d5a4a;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    margin-bottom: 0.7rem;
}

.legal-container a {
    color: #1a3a2e;
    font-weight: 600;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f5f7fa;
    font-weight: 700;
    color: #1a3a2e;
}

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

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

    .hero-content,
    .split-content {
        padding: 3rem 2rem;
    }

    .hero-image,
    .split-image {
        min-height: 400px;
    }

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

    h2 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .legal-container h1 {
        font-size: 2rem;
    }
}