* {
    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: #333;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background-color: #2d5a3d;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

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

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

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

.ad-notice {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: white;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.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: 250px;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #4a8359;
    color: white;
}

.btn-primary:hover {
    background-color: #3d6e4a;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.hero-section {
    margin-bottom: 3rem;
}

.hero-image-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #2d5a3d;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.85) 0%, rgba(45, 90, 61, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #f4a261;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #e76f51;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 162, 97, 0.4);
}

.intro-section {
    padding: 4rem 0;
    background-color: white;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.services-preview {
    padding: 5rem 0;
    background-color: #f5f5f5;
}

.services-preview h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d5a3d;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    height: 240px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2d5a3d;
}

.card-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    flex: 1;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f4a261;
    margin-bottom: 1rem;
}

.card-cta {
    width: 100%;
    padding: 0.75rem;
    background-color: #2d5a3d;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.card-cta:hover {
    background-color: #3d6e4a;
    transform: translateY(-2px);
}

.testimonial-section {
    padding: 4rem 0;
    background-color: white;
}

.testimonial-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2d5a3d;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #f4a261;
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    max-width: 500px;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #2d5a3d;
}

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.form-wrapper > p {
    margin-bottom: 2rem;
    color: #666;
}

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

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

.form-group label {
    font-weight: 600;
    color: #333;
}

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

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

.submit-btn {
    padding: 1rem;
    background-color: #4a8359;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: #3d6e4a;
    transform: translateY(-2px);
}

.references-section {
    padding: 3rem 0;
    background-color: white;
}

.references-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.references-list p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
}

.references-list a {
    color: #4a8359;
    text-decoration: none;
    transition: color 0.3s;
}

.references-list a:hover {
    color: #2d5a3d;
    text-decoration: underline;
}

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

.disclaimer-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

.main-footer {
    background-color: #1a2e1f;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1 1 250px;
}

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

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

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

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

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

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

.page-header {
    background-color: #2d5a3d;
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-content {
    padding: 4rem 0;
}

.about-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.about-layout.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1 1 400px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.about-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

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

.value-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 5rem 0;
    background-color: #2d5a3d;
    color: white;
    text-align: center;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-detail {
    padding: 4rem 0;
}

.services-grid-detail {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    display: flex;
    gap: 2rem;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.service-image {
    flex: 1 1 400px;
    min-height: 300px;
    background-color: #e0e0e0;
}

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

.service-info {
    flex: 1 1 400px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.service-info > p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a8359;
    font-weight: bold;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-pricing .price {
    font-size: 2rem;
    font-weight: 700;
    color: #f4a261;
}

.select-btn {
    padding: 0.75rem 2rem;
    background-color: #2d5a3d;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-btn:hover {
    background-color: #3d6e4a;
    transform: translateY(-2px);
}

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

.contact-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.contact-info-section {
    padding: 4rem 0;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.contact-card p {
    color: #555;
    line-height: 1.8;
}

.no-link {
    color: #555;
    cursor: text;
}

.contact-map {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e0e0e0;
    height: 400px;
}

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

.contact-approach {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.contact-approach h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.contact-approach p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 900px;
}

.thanks-section {
    padding: 5rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

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

.thanks-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #f0f8f4;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    color: #2d5a3d;
    font-weight: 600;
}

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

.next-steps {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.next-steps h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2d5a3d;
}

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

.step-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    max-width: 350px;
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2d5a3d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2d5a3d;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

.legal-page {
    padding: 4rem 0;
    background-color: white;
}

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

.last-updated {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 2rem;
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d5a3d;
}

.legal-page p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-page ul li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #4a8359;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

    .hero-content p {
        font-size: 1rem;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .about-layout,
    .about-layout.reverse {
        flex-direction: column;
    }

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

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