* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f2d;
}

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

.main-nav a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2c5f2d;
}

.ad-label {
    font-size: 0.75rem;
    color: #95a5a6;
    padding: 0.3rem 0.8rem;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    margin-left: 1rem;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: #f8f9fa;
}

.hero-text {
    max-width: 540px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #234a24;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5f2d;
    padding: 1rem 2.5rem;
    border: 2px solid #2c5f2d;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

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

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

.intro-image img {
    width: 100%;
    height: 100%;
}

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c5f2d;
}

.service-card p {
    margin: 0 1.5rem 1.5rem;
    color: #5a6c7d;
    flex-grow: 1;
}

.service-card .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5f2d;
    margin: 0 1.5rem 1rem;
}

.select-service,
.select-service-detail {
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.5rem;
    margin: 0 1.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover,
.select-service-detail:hover {
    background-color: #234a24;
}

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.form-container {
    flex: 1;
}

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

.form-container p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

.submit-btn:hover {
    background-color: #234a24;
}

.form-visual {
    flex: 1;
    display: flex;
    align-items: center;
}

.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2c5f2d;
}

.trust-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c5f2d;
}

.trust-item p {
    color: #5a6c7d;
}

.disclaimer-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #5a6c7d;
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    margin-top: 6rem;
    padding: 3rem 0 1rem;
}

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

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

.footer-section p,
.footer-section a {
    display: block;
    margin-bottom: 0.5rem;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    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;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #234a24;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

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

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

.page-hero p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

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

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

.values-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c5f2d;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.value-item p {
    color: #5a6c7d;
}

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

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

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

.team-image img {
    width: 100%;
    height: 100%;
}

.team-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

.team-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #5a6c7d;
}

.cta-about,
.cta-services {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    margin: 6rem auto;
    max-width: 1400px;
    border-radius: 8px;
}

.cta-about h2,
.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.cta-about p,
.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

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

.service-includes {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-includes li {
    margin-bottom: 0.8rem;
    color: #5a6c7d;
}

.price-large {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f2d;
    margin: 1.5rem 0;
}

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

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

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c5f2d;
}

.info-block p {
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.map-placeholder {
    text-align: center;
    color: #5a6c7d;
}

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

.approach-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c5f2d;
}

.approach-steps {
    display: flex;
    gap: 2rem;
}

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

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.step-item p {
    color: #5a6c7d;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

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

.selected-service-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    color: #2c5f2d;
    font-weight: 600;
}

.thanks-next-steps {
    text-align: left;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-next-steps h3 {
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.thanks-next-steps ul {
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    margin-bottom: 0.8rem;
    color: #5a6c7d;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

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

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

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

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c5f2d;
}

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

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

.legal-page li {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
}

.legal-page a {
    color: #2c5f2d;
    text-decoration: underline;
}

.last-updated {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-split,
    .about-split,
    .team-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .team-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

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

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

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

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

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

    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

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

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