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

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

a {
    text-decoration: none;
    color: inherit;
}

.main-nav {
    background-color: #ffffff;
    padding: 1.2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4a7c59;
}

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

.nav-links a {
    color: #2c3e37;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4a7c59;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #6b7c72;
    padding: 0.3rem 0.7rem;
    background-color: #f0f4f1;
    border-radius: 4px;
}

.hero-section {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    background-color: #e8f1eb;
}

.hero-content {
    padding: 6rem 2rem 3rem;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #1a2f23;
    margin-bottom: 1.5rem;
    max-width: 820px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #4a5c52;
    margin-bottom: 2.5rem;
    max-width: 680px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #4a7c59;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

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

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

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

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

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

.intro-section h2 {
    font-size: 2.4rem;
    color: #1a2f23;
    margin-bottom: 1.8rem;
    line-height: 1.3;
}

.intro-section p {
    font-size: 1.1rem;
    color: #4a5c52;
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.services-section {
    padding: 6rem 2rem;
    background-color: #f5f8f6;
}

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

.section-header h2 {
    font-size: 2.6rem;
    color: #1a2f23;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #5a6c62;
}

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

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

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

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.6rem;
    color: #1a2f23;
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1rem;
    color: #5a6c62;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #3d6849;
}

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

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

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

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5c52;
    margin-bottom: 3rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e37;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.trust-section h2 {
    font-size: 2.4rem;
    color: #1a2f23;
    margin-bottom: 2.5rem;
}

.trust-content {
    display: flex;
    gap: 3.5rem;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text p {
    font-size: 1.05rem;
    color: #4a5c52;
    line-height: 1.7;
    margin-bottom: 1.3rem;
}

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

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

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

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.value-item {
    flex: 1;
}

.value-item h3 {
    font-size: 1.6rem;
    color: #d4e0d8;
    margin-bottom: 1rem;
}

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

.cta-section {
    padding: 5rem 2rem;
    background-color: #f5f8f6;
}

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

.cta-content h2 {
    font-size: 2.4rem;
    color: #1a2f23;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: #4a5c52;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #4a7c59;
    border: 2px solid #4a7c59;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #4a7c59;
    color: #ffffff;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #e8f1eb;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #5a6c62;
    line-height: 1.6;
    font-style: italic;
}

.main-footer {
    background-color: #1a2f23;
    color: #d4e0d8;
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1;
}

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

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

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

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

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

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #8a9b92;
}

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

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

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

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

.btn-cookie-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

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

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

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

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

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

.page-subtitle {
    font-size: 1.3rem;
    color: #4a5c52;
}

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

.about-content {
    display: flex;
    gap: 3.5rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #1a2f23;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.05rem;
    color: #4a5c52;
    line-height: 1.7;
    margin-bottom: 1.3rem;
}

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

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

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

.team-section h2 {
    font-size: 2.4rem;
    color: #1a2f23;
    margin-bottom: 1rem;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #5a6c62;
    margin-bottom: 3.5rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.team-member {
    flex: 1 1 calc(50% - 1.25rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.team-member h3 {
    font-size: 1.4rem;
    color: #1a2f23;
    margin-bottom: 0.8rem;
}

.team-member p {
    font-size: 1rem;
    color: #5a6c62;
    line-height: 1.6;
}

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

.methodology-section h2 {
    font-size: 2.4rem;
    color: #1a2f23;
    margin-bottom: 3rem;
    text-align: center;
}

.methodology-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.method-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 1.5rem;
}

.method-item h3 {
    font-size: 1.4rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.method-item p {
    font-size: 1rem;
    color: #5a6c62;
    line-height: 1.6;
}

.partnerships-section {
    padding: 5rem 2rem;
    background-color: #e8f1eb;
}

.partnerships-section h2 {
    font-size: 2.2rem;
    color: #1a2f23;
    margin-bottom: 1.5rem;
}

.partnerships-section p {
    font-size: 1.05rem;
    color: #4a5c52;
    line-height: 1.7;
    margin-bottom: 1.3rem;
}

.partnerships-list {
    list-style: none;
    margin: 1.5rem 0;
}

.partnerships-list li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #4a5c52;
}

.partnerships-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-size: 1.5rem;
}

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

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

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a5c52;
    line-height: 1.7;
    margin-bottom: 1.3rem;
}

.service-detail-price {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 2rem 0;
}

.price-label {
    font-size: 1rem;
    color: #5a6c62;
    font-weight: 600;
}

.price-value {
    font-size: 1.8rem;
    color: #4a7c59;
    font-weight: 700;
}

.btn-back-services {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #4a7c59;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-back-services:hover {
    background-color: #3d6849;
}

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

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

.process-section {
    padding: 5rem 2rem;
    background-color: #f5f8f6;
}

.process-section h2 {
    font-size: 2.4rem;
    color: #1a2f23;
    margin-bottom: 3rem;
    text-align: center;
}

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

.process-step {
    flex: 1 1 calc(33.333% - 1.5rem);
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #4a7c59;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    color: #1a2f23;
    margin-bottom: 0.8rem;
}

.process-step p {
    font-size: 1rem;
    color: #5a6c62;
    line-height: 1.5;
}

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

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

.contact-block {
    flex: 1 1 calc(33.333% - 2rem);
}

.contact-block h2 {
    font-size: 1.6rem;
    color: #1a2f23;
    margin-bottom: 1rem;
}

.contact-block p {
    font-size: 1.05rem;
    color: #4a5c52;
    line-height: 1.7;
}

.contact-email {
    font-weight: 600;
    color: #4a7c59;
}

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

.contact-details-section {
    padding: 5rem 2rem;
    background-color: #f5f8f6;
}

.contact-details-section h2 {
    font-size: 2.2rem;
    color: #1a2f23;
    margin-bottom: 2.5rem;
}

.directions-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.directions-text {
    flex: 1;
}

.directions-text p {
    font-size: 1.05rem;
    color: #4a5c52;
    line-height: 1.7;
    margin-bottom: 1.3rem;
}

.directions-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    max-height: 400px;
}

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

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

.faq-section h2 {
    font-size: 2.4rem;
    color: #1a2f23;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e0e8e4;
}

.faq-item:last-child {
    border-bottom: none;
}

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

.faq-item p {
    font-size: 1.05rem;
    color: #5a6c62;
    line-height: 1.7;
}

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

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

.thanks-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: #4a7c59;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #4a5c52;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-confirmed {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #2c3e37;
}

.service-confirmed strong {
    color: #4a7c59;
}

.thanks-submessage {
    font-size: 1.05rem;
    color: #5a6c62;
    margin-bottom: 2.5rem;
}

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

.btn-primary-alt,
.btn-secondary-alt {
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary-alt {
    background-color: #4a7c59;
    color: #ffffff;
}

.btn-primary-alt:hover {
    background-color: #3d6849;
}

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

.btn-secondary-alt:hover {
    background-color: #4a7c59;
    color: #ffffff;
}

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

.next-steps-section h2 {
    font-size: 2.2rem;
    color: #1a2f23;
    margin-bottom: 3rem;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #e8f1eb;
    color: #4a7c59;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

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

.step-item p {
    font-size: 1rem;
    color: #5a6c62;
    line-height: 1.6;
}

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

.legal-page h1 {
    font-size: 2.8rem;
    color: #1a2f23;
    margin-bottom: 1rem;
}

.last-update {
    font-size: 0.95rem;
    color: #6b7c72;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #1a2f23;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.4rem;
    color: #2c3e37;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    font-size: 1.05rem;
    color: #4a5c52;
    line-height: 1.7;
    margin-bottom: 1.3rem;
}

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

.legal-page ul li {
    font-size: 1.05rem;
    color: #4a5c52;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

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

.cookies-table thead {
    background-color: #f5f8f6;
}

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

.cookies-table th {
    font-weight: 600;
    color: #1a2f23;
}

.cookies-table td {
    color: #4a5c52;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .ad-disclosure {
        display: none;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .trust-content,
    .about-content,
    .directions-content {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .team-member,
    .method-item,
    .process-step,
    .contact-block {
        flex: 1 1 100%;
    }

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

    .service-detail:nth-child(even) {
        flex-direction: column;
    }

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

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