* {
    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-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    border-bottom: 1px solid #e9ecef;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f3f;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a5f3f;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4a5568;
    max-width: 600px;
}

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

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5f3f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.cta-button.secondary {
    background-color: #4a5568;
}

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

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

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

.split-text {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a5f3f;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
}

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

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

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

.section-header-centered {
    text-align: center;
    padding: 4rem 2rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a5f3f;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: #4a5568;
}

.services-preview {
    padding: 3rem 2rem 5rem;
    background-color: #f8faf9;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex: 0 0 calc(33.333% - 1.5rem);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: #1a5f3f;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #4a5568;
}

.price {
    padding: 0 1.5rem 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f3f;
}

.select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #1a5f3f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #144d32;
}

.value-proposition {
    background-color: #ffffff;
}

.text-link {
    color: #1a5f3f;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: color 0.3s;
}

.text-link:hover {
    color: #144d32;
    text-decoration: underline;
}

.contact-form-section {
    background-color: #2c3e50;
    padding: 5rem 2rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a5f3f;
}

.form-container > p {
    color: #4a5568;
    margin-bottom: 2rem;
}

.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: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-button {
    padding: 1rem 2rem;
    background-color: #1a5f3f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #144d32;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #1a5f3f;
}

.footer-column p {
    color: #cbd5e0;
    font-size: 0.95rem;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #cbd5e0;
    font-size: 0.9rem;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #8fc9b3;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #1a5f3f;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #144d32;
}

.cookie-btn.reject {
    background-color: #4a5568;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #2d3748;
}

.page-header {
    background-color: #1a5f3f;
    color: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #e8f2ed;
}

.about-intro {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

.philosophy-section {
    background-color: #f8faf9;
    padding: 4rem 2rem;
}

.team-values {
    background-color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.team-values h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a5f3f;
}

.values-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a5f3f;
}

.value-item p {
    color: #4a5568;
    text-align: left;
}

.credentials-section {
    background-color: #f8faf9;
    padding: 4rem 2rem;
}

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

.content-centered h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a5f3f;
}

.content-centered p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
}

.cta-about {
    background-color: #2c3e50;
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

.service-detail {
    padding: 3rem 0;
}

.service-detail:nth-child(even) {
    background-color: #f8faf9;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a5f3f;
    margin: 1.5rem 0;
}

.process-section {
    background-color: #f8faf9;
    padding: 5rem 2rem;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a5f3f;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
}

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

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.process-step p {
    color: #4a5568;
    text-align: left;
}

.cta-services {
    background-color: #2c3e50;
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.contact-content {
    padding: 4rem 2rem;
}

.contact-info-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1a5f3f;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-block p {
    color: #4a5568;
    line-height: 1.8;
}

.contact-image {
    flex: 1;
    background-color: #e8f2ed;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-additional {
    background-color: #f8faf9;
    padding: 4rem 2rem;
}

.contact-additional a {
    color: #1a5f3f;
    font-weight: 600;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a5f3f;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.legal-page p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: #4a5568;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #f8faf9;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a5f3f;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.selected-service-info {
    background-color: #e8f2ed;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-weight: 600;
    color: #1a5f3f;
}

.thanks-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

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

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

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

    .nav-menu {
        gap: 1rem;
    }

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

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

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

    .values-grid,
    .process-steps {
        flex-direction: column;
    }
}