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

.site-header {
    background-color: #1a3a2e;
    padding: 1.2rem 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;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

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

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

.nav-links a:hover {
    color: #4ecdc4;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #a8dadc;
    padding: 0.3rem 0.8rem;
    border: 1px solid #4ecdc4;
    border-radius: 4px;
    margin-left: 1rem;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a3a2e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-hero:hover {
    background-color: #2d5a45;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #d4e9e2;
}

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

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 0;
}

.intro-left {
    flex: 1;
    background-color: #e8f4f2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.intro-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.intro-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #495057;
}

.services-grid {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

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

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

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #d4e9e2;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a3a2e;
}

.service-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #495057;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5a45;
    margin-bottom: 1.5rem;
}

.btn-service {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: #1a3a2e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #2d5a45;
}

.cta-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.cta-image {
    flex: 1;
    background-color: #e8f4f2;
    overflow: hidden;
}

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

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

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

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

.form-container > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #6c757d;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background-color: #2d5a45;
}

.disclaimer-section {
    background-color: #fff9e6;
    padding: 3rem 2rem;
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.7;
}

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

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

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1e8e2;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #a8dadc;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3a2e;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-primary {
    padding: 0.7rem 1.8rem;
    background-color: #4ecdc4;
    color: #1a3a2e;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #45b8ad;
}

.btn-secondary {
    padding: 0.7rem 1.8rem;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

.thanks-page {
    background-color: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
}

.thanks-content {
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    color: #2d5a45;
    margin-bottom: 1.5rem;
    width: 100px;
    height: 100px;
    background-color: #e8f4f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

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

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #495057;
}

.service-confirmation {
    background-color: #e8f4f2;
    padding: 1.2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #1a3a2e;
}

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

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

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: #d1e8e2;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-item {
    display: flex;
    margin-bottom: 5rem;
    gap: 3rem;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #495057;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d5a45;
    margin: 2rem 0 1.5rem;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e8f4f2;
}

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

.services-cta {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

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

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

.btn-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #1a3a2e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-large:hover {
    background-color: #2d5a45;
}

.about-intro {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 0;
}

.about-content-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
    padding: 0 3rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #495057;
}

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

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

.values-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.values-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a3a2e;
    text-align: center;
}

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

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2d5a45;
}

.value-card p {
    font-size: 1rem;
    color: #495057;
}

.approach-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.approach-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

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

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.approach-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #495057;
}

.expertise-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.expertise-section h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a3a2e;
    text-align: center;
}

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

.expertise-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #495057;
}

.contact-layout {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.contact-info-block {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9fa;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a3a2e;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #2d5a45;
}

.contact-item p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
}

.contact-image-block {
    flex: 1;
    overflow: hidden;
    background-color: #e8f4f2;
}

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

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

.contact-approach h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.contact-approach p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #495057;
}

.contact-cta {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a3a2e;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #495057;
}

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

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a3a2e;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5a45;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a3a2e;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #495057;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    margin-bottom: 0.7rem;
    color: #495057;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-section,
    .cta-split,
    .service-detail-item,
    .about-content-split,
    .approach-split,
    .contact-layout {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-right,
    .cta-content,
    .about-text,
    .approach-content,
    .contact-info-block {
        padding: 3rem 2rem;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .section-header-centered h2,
    .page-hero h1 {
        font-size: 2.2rem;
    }

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

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

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