* {
    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: #2a2a2a;
    background-color: #fefefe;
}

.main-nav {
    background-color: #2d5016;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    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;
    gap: 1rem;
}

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

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

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

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

.nav-ad-disclosure {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 3px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #2d5016;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    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: 250px;
}

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

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

.btn-cookie {
    background-color: #2d5016;
    color: #fff;
}

.btn-cookie:hover {
    background-color: #3d6820;
}

.btn-cookie-alt {
    background-color: transparent;
    color: #2d5016;
    border: 2px solid #2d5016;
}

.btn-cookie-alt:hover {
    background-color: #f5f5f5;
}

.hero-section {
    display: flex;
    flex-direction: column;
    background-color: #f9f6f1;
}

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

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

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

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #2d5016;
    color: #fff;
}

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

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

.btn-secondary:hover {
    background-color: #2d5016;
    color: #fff;
}

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

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

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

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

.intro-image {
    flex: 1;
    min-width: 300px;
    background-color: #f0ebe4;
}

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

.process-section {
    padding: 5rem 2rem;
    background-color: #3d6820;
    color: #fff;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

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

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.1rem;
    color: #5a5a5a;
}

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

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

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8e3da;
}

.service-info {
    padding: 1.5rem;
}

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

.service-info p {
    color: #5a5a5a;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

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

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

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

.form-intro {
    text-align: center;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

.contact-form {
    background-color: #f9f6f1;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2d5016;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 5rem 2rem;
    background-color: #e8e3da;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-content {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 2rem;
}

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

.trust-block h3 {
    font-size: 1.25rem;
    color: #2d5016;
    margin-bottom: 0.5rem;
}

.trust-block p {
    color: #5a5a5a;
}

.trust-image {
    flex: 1;
    max-width: 500px;
    background-color: #d4cfc4;
}

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

.cta-section {
    padding: 5rem 2rem;
    background-color: #2d5016;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.main-footer {
    background-color: #1a2f0d;
    color: #fff;
    padding: 3rem 2rem 2rem;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

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

.footer-column p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

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

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

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.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 {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 1rem;
}

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

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

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-intro {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.about-text {
    flex: 1;
    min-width: 300px;
}

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

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

.about-image {
    flex: 1;
    min-width: 300px;
    background-color: #f0ebe4;
}

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

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

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

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

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

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

.value-card p {
    color: #5a5a5a;
}

.approach-section {
    padding: 5rem 2rem;
    background-color: #3d6820;
    color: #fff;
}

.approach-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.approach-image {
    flex: 1;
    min-width: 300px;
    background-color: #2d5016;
}

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

.approach-text {
    flex: 1;
    min-width: 300px;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.approach-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.experience-section {
    padding: 5rem 2rem;
    background-color: #e8e3da;
}

.experience-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 3rem;
}

.experience-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.experience-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2d5016;
}

.experience-item h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 0.75rem;
}

.experience-item p {
    color: #5a5a5a;
    font-size: 1.05rem;
}

.team-cta {
    padding: 5rem 2rem;
    background-color: #2d5016;
    color: #fff;
    text-align: center;
}

.team-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #f0ebe4;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

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

.service-price-large {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3d6820;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.25rem;
    color: #2d5016;
    margin: 1.5rem 0 1rem;
}

.service-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail-content ul li {
    color: #5a5a5a;
    margin-bottom: 0.5rem;
}

.service-note {
    font-style: italic;
    color: #7a7a7a;
    font-size: 0.9rem;
    margin-top: 1rem;
}

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

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

.services-cta p {
    color: #5a5a5a;
    margin-bottom: 2rem;
}

.contact-section {
    padding: 3rem 2rem;
    background-color: #fff;
}

.contact-info-block {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.contact-info-block h2 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #5a5a5a;
}

.contact-map-placeholder {
    max-width: 900px;
    margin: 0 auto;
    height: 300px;
    background-color: #e8e3da;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    padding: 2rem;
}

.map-overlay p {
    color: #2d5016;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.map-note {
    font-size: 0.9rem;
    color: #5a5a5a;
}

.contact-additional {
    padding: 5rem 2rem;
    background-color: #f9f6f1;
}

.contact-additional h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 3rem;
}

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

.contact-step {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

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

.contact-step p {
    color: #5a5a5a;
}

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

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

.thanks-message {
    font-size: 1.25rem;
    color: #5a5a5a;
    margin-bottom: 1rem;
}

.thanks-detail {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.thanks-info {
    font-size: 0.95rem;
    color: #7a7a7a;
    margin-bottom: 2rem;
}

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

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

.legal-page h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 2rem;
}

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

.legal-content h2 {
    font-size: 1.75rem;
    color: #2d5016;
    margin: 2rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.25rem;
    color: #3d6820;
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    color: #5a5a5a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.legal-content ul li {
    color: #5a5a5a;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content strong {
    color: #2d5016;
}

.cookies-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #d4cfc4;
}

.cookies-table th {
    background-color: #f9f6f1;
    color: #2d5016;
    font-weight: 600;
}

.cookies-table td {
    color: #5a5a5a;
}

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

    .nav-links {
        gap: 1rem;
    }

    .intro-wrapper,
    .about-content,
    .approach-wrapper,
    .trust-section {
        flex-direction: column;
    }

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

    .process-grid,
    .services-cards,
    .values-grid,
    .contact-steps {
        flex-direction: column;
    }

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

    .thanks-container h1 {
        font-size: 1.75rem;
    }
}