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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

.main-nav a {
    color: #2c2c2c;
    font-size: 1rem;
    position: relative;
}

.main-nav a:hover {
    color: #5a7d5f;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    padding: 0.4rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 5rem;
    background-color: #f5f2ed;
}

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

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #5a7d5f;
    color: #ffffff;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #4a6d4f;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #5a7d5f;
    border: 2px solid #5a7d5f;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #5a7d5f;
    color: #ffffff;
}

.intro-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

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

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

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

.services-split {
    padding: 6rem 0;
    background-color: #fafafa;
}

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

.service-grid-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-height: 350px;
}

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

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #5a7d5f;
    margin: 1.5rem 0;
}

.btn-select-service {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #5a7d5f;
    color: #ffffff;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #4a6d4f;
}

.form-section {
    padding: 5rem 0;
    background-color: #f5f2ed;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.project-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f9f9f9;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #5a7d5f;
    color: #ffffff;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.disclaimer-section {
    padding: 3rem 0;
    background-color: #f9f7f4;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
}

.footer-split {
    background-color: #2c2c2c;
    color: #e5e5e5;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-col ul {
    list-style: none;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #b5b5b5;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-col p {
    color: #b5b5b5;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #888;
    font-size: 0.9rem;
}

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

.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 {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
}

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

.btn-accept {
    padding: 0.7rem 1.5rem;
    background-color: #5a7d5f;
    color: #ffffff;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: #4a6d4f;
}

.btn-reject {
    padding: 0.7rem 1.5rem;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c2c2c;
}

.page-hero-split {
    display: flex;
    min-height: 400px;
    background-color: #f5f2ed;
}

.page-hero-split .hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 5rem;
}

.page-hero-split .hero-right {
    flex: 1;
    overflow: hidden;
}

.page-hero-split .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.method-section {
    padding: 5rem 0;
    background-color: #fafafa;
}

.values-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f9f7f4;
    border-radius: 8px;
}

.cta-section-about {
    padding: 5rem 0;
    background-color: #f5f2ed;
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.services-detailed {
    padding: 3rem 0;
}

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

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

.service-detail-image {
    flex: 1;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.service-detail-content ul {
    margin: 1.5rem 0;
}

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

.contact-info-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.contact-split {
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

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

.note-small {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

.contact-map-placeholder {
    flex: 1;
    min-height: 500px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-section {
    padding: 5rem 0;
    background-color: #fafafa;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.faq-item h3 {
    color: #5a7d5f;
    margin-bottom: 0.8rem;
}

.cta-contact {
    padding: 5rem 0;
    background-color: #f5f2ed;
    text-align: center;
}

.thanks-section {
    padding: 6rem 0;
    background-color: #fafafa;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
}

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

.service-confirmation {
    background-color: #f5f2ed;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    display: none;
}

.thanks-details {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.thanks-details ol {
    margin-top: 1rem;
}

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

.thanks-contact {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #666;
}

.legal-page {
    padding: 5rem 0;
    background-color: #ffffff;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.last-update {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-page h2 {
    margin-top: 2.5rem;
    color: #2c2c2c;
}

.legal-page h3 {
    margin-top: 1.5rem;
    color: #5a7d5f;
}

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

.legal-page a {
    color: #5a7d5f;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #4a6d4f;
}

.cookie-management {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f5f2ed;
    border-radius: 8px;
    text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .header-split {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-left {
        padding: 2.5rem;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

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

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