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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
}

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

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

.nav-links a:hover {
    color: #2d5016;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.hero-section {
    position: relative;
    width: 100%;
    background-color: #1a1a1a;
}

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

.hero-image {
    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, 80, 22, 0.85), rgba(45, 80, 22, 0.55));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    max-width: 900px;
    line-height: 1.2;
}

.hero-overlay p {
    color: #f0f0f0;
    font-size: 1.3rem;
    max-width: 700px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.intro-section {
    background-color: #f8f9fa;
}

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

.intro-section p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1rem;
}

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

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.section-header-centered p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

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

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

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

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

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

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.card-content p {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
    line-height: 1.5;
}

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

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

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

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

.text-block {
    flex: 1;
}

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

.text-block p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.image-block {
    flex: 1;
    background-color: #d0d0d0;
}

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

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

.testimonials-section h2 {
    color: #ffffff;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.testimonial-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 350px;
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #90c060;
}

.testimonial-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #d0e0c0;
}

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

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

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

.form-container > p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
}

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

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

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

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

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

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

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

.disclaimer-section {
    background-color: #fffef8;
    border-top: 1px solid #e0d8c0;
    border-bottom: 1px solid #e0d8c0;
    padding: 3rem 2rem;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.7;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

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

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    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;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

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

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

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

.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: linear-gradient(135deg, #2d5016, #3d6820);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: #e0e0e0;
}

.about-intro {
    background-color: #ffffff;
}

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

.about-intro p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.values-section {
    background-color: #f8f9fa;
}

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

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2d5016;
}

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

.value-item p {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

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

.process-section {
    background-color: #f0f4f0;
}

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

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

.process-step {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5016;
    min-width: 60px;
}

.process-step h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

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

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

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

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2d5016;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

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

.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-header {
    background-color: #2d5016;
    color: #ffffff;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-detail-header h2 {
    font-size: 1.8rem;
    margin: 0;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
}

.service-detail-content {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    align-items: flex-start;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 1.3rem;
    color: #2d5016;
    margin: 1.5rem 0 1rem;
}

.service-text p {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-text ul {
    list-style-position: inside;
    margin: 1rem 0;
}

.service-text ul li {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-image {
    flex: 1;
    background-color: #d0d0d0;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

.service-note-section {
    background-color: #fffef8;
    padding: 3rem 2rem;
}

.service-note-section h2 {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.service-note-section p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

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

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.7;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.map-placeholder p {
    font-size: 1rem;
    color: #7f8c8d;
}

.faq-section {
    background-color: #f8f9fa;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

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

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

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

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

.thanks-message {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.selected-service {
    background-color: #f0f4f0;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #2d5016;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    margin-bottom: 2.5rem;
}

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

.next-steps ol {
    list-style-position: inside;
    margin-left: 1rem;
}

.next-steps ol li {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.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: #f0f4f0;
    transform: translateY(-2px);
}

.legal-content {
    background-color: #ffffff;
    min-height: 60vh;
}

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

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

.legal-content h2 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #2d5016;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #3d6820;
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .hero-overlay p {
        font-size: 1.1rem;
    }

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

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

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

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

    .service-detail-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}