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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background-color: #ffffff;
}

.main-nav {
    background-color: #2c5f4f;
    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: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links a.active {
    border-bottom: 2px solid #ffffff;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #d4e4df;
    font-style: italic;
    padding: 0.3rem 0.6rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.hero-section {
    display: flex;
    flex-direction: column;
    min-height: 600px;
    background-color: #f8f6f3;
}

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

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

.hero-content p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.hero-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

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

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

.intro-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a3d32;
}

.intro-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.problem-section {
    background-color: #e8e4df;
    padding: 5rem 0;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.text-block {
    flex: 1;
    padding: 0 2rem;
}

.text-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a3d32;
}

.text-block p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
}

.image-block {
    flex: 1;
    height: 450px;
    overflow: hidden;
}

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

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

.insight-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.insight-section > .content-wrapper > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.insight-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 250px;
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
}

.insight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.insight-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-section {
    background-color: #f0ede8;
    padding: 5rem 2rem;
}

.testimonial-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-wrapper blockquote {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-left: 4px solid #2c5f4f;
    font-style: italic;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.testimonial-wrapper blockquote p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
}

.testimonial-wrapper blockquote footer {
    font-style: normal;
    font-weight: 600;
    color: #2c5f4f;
}

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

.benefits-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a3d32;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.benefit-item {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.benefit-item.reverse {
    flex-direction: row-reverse;
}

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

.benefit-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a3d32;
}

.benefit-text p {
    font-size: 1.05rem;
    color: #3a3a3a;
}

.services-preview-section {
    background-color: #f8f6f3;
    padding: 5rem 2rem;
}

.services-preview-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a3d32;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    color: #4a4a4a;
}

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

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

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

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

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

.service-card p {
    margin: 0 1.5rem 1rem;
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.5;
}

.price-tag {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f4f;
    margin: 1rem 1.5rem;
}

.select-service-btn {
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem 1.5rem;
    background-color: #2c5f4f;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #1a3d32;
}

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

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

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #d4a574;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.service-selected-notice {
    margin-top: 1.5rem;
    text-align: center;
    font-style: italic;
    font-size: 0.9rem;
}

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

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

.footer-col {
    flex: 1;
    min-width: 250px;
}

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

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #d4e4df;
    margin-bottom: 0.8rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3d32;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.3);
    z-index: 10000;
    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;
    min-width: 300px;
    font-size: 0.95rem;
}

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

.cookie-btn.reject {
    background-color: #8a8a8a;
    color: #ffffff;
}

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

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

.page-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.about-story h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a3d32;
}

.about-story p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

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

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

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

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

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

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

.team-section {
    background-color: #e8e4df;
    padding: 5rem 2rem;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a3d32;
}

.team-section p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

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

.approach-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a3d32;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f4f;
    min-width: 80px;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a3d32;
}

.step-item p {
    font-size: 1rem;
    color: #4a4a4a;
}

.commitment-section {
    background-color: #f0ede8;
    padding: 5rem 2rem;
}

.commitment-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a3d32;
}

.commitment-section p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.services-detail-section {
    background-color: #ffffff;
    padding: 3rem 2rem;
}

.service-detail-card {
    max-width: 1100px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a3d32;
}

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

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.service-detail-content h3 {
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
    color: #1a3d32;
}

.service-includes {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: #4a4a4a;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f4f;
    font-weight: 700;
}

.service-cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #2c5f4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #1a3d32;
}

.guarantee-section {
    background-color: #f8f6f3;
    padding: 5rem 2rem;
}

.guarantee-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a3d32;
}

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

.guarantee-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.guarantee-item p {
    font-size: 1rem;
    color: #4a4a4a;
}

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

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

.contact-block {
    flex: 1;
    min-width: 250px;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f4f;
}

.contact-block p {
    font-size: 1rem;
    color: #3a3a3a;
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: #1a3d32;
}

.email-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
    color: #6a6a6a;
}

.showroom-section {
    background-color: #f0ede8;
    padding: 4rem 2rem;
}

.showroom-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a3d32;
}

.showroom-section p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
}

.contact-form-section {
    background-color: #e8e4df;
    padding: 4rem 2rem;
}

.contact-form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a3d32;
}

.contact-form-section p {
    font-size: 1.05rem;
    color: #3a3a3a;
}

.contact-form-section a {
    color: #2c5f4f;
    font-weight: 600;
}

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

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

.thanks-icon {
    margin-bottom: 2rem;
}

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

.thanks-message {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.service-confirmation {
    font-size: 1rem;
    font-weight: 600;
    color: #2c5f4f;
    margin-bottom: 2.5rem;
}

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

.btn-primary {
    padding: 1rem 2rem;
    background-color: #2c5f4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a3d32;
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: #d4a574;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #c29563;
}

.next-steps {
    margin-top: 3rem;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #1a3d32;
}

.steps-list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-box {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 1.5rem;
    background-color: #f8f6f3;
    border-radius: 8px;
}

.step-num {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.step-box p {
    font-size: 0.95rem;
    color: #4a4a4a;
}

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

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a3d32;
}

.last-update {
    font-size: 0.9rem;
    color: #6a6a6a;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: #2c5f4f;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a3d32;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c5f4f;
}

.legal-container p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
    line-height: 1.7;
}

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

.legal-container li {
    margin-bottom: 0.6rem;
    color: #3a3a3a;
    line-height: 1.6;
}

.legal-container a {
    color: #2c5f4f;
    text-decoration: underline;
}

.legal-container strong {
    font-weight: 600;
    color: #1a3d32;
}

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

.cookie-table thead {
    background-color: #2c5f4f;
    color: #ffffff;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table tbody tr:hover {
    background-color: #f8f6f3;
}

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

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

    .image-block {
        height: 300px;
    }

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

    .testimonial-wrapper {
        flex-direction: column;
    }

    .benefit-item,
    .benefit-item.reverse {
        flex-direction: column;
    }

    .benefit-image {
        height: 280px;
    }

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

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

    .service-detail-image {
        height: 300px;
    }

    .nav-links {
        gap: 1rem;
    }

    .ad-disclosure {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

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

    .step-item {
        flex-direction: column;
    }

    .step-number {
        min-width: auto;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}