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

:root {
    --primary-color: #2C5F2D;
    --secondary-color: #97BC62;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --accent-gold: #d4a574;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.ad-disclosure {
    padding: 0.4rem 1rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.hero-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    background-color: #e8f0e9;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: #7fa34f;
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background-color: #f0f4f0;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.services-overview {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    align-items: stretch;
    background-color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    min-height: 350px;
}

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

.service-icon {
    flex: 1;
    background-color: #e8f0e9;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 1.5rem 0;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #7fa34f;
    transform: translateY(-2px);
}

.trust-section-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    background-color: var(--bg-light);
}

.trust-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.trust-image {
    flex: 1;
    background-color: #e8f0e9;
    overflow: hidden;
}

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

.form-section {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
}

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

.form-intro {
    flex: 1;
    color: var(--bg-white);
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.form-wrapper {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.testimonials-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.testimonial-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
}

.testimonial-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.testimonial-item {
    margin-bottom: 2.5rem;
}

.testimonial-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.testimonial-item cite {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-image {
    flex: 1;
    background-color: #e8f0e9;
    overflow: hidden;
}

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

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 2rem 1rem;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1400px;
    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;
    margin: 0;
}

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

.btn-cookie {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie:not(.secondary) {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-cookie:not(.secondary):hover {
    background-color: #7fa34f;
}

.btn-cookie.secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.page-header-split {
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

.header-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.header-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.header-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.header-image {
    flex: 1;
    background-color: #e8f0e9;
    overflow: hidden;
}

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

.page-header-centered {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--bg-light);
}

.page-header-centered h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-header-centered p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-philosophy {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.philosophy-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

.philosophy-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.philosophy-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.philosophy-image {
    flex: 1;
    background-color: #e8f0e9;
    overflow: hidden;
}

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

.values-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.approach-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.approach-split.reverse {
    flex-direction: row-reverse;
}

.approach-image {
    flex: 1;
    background-color: #e8f0e9;
    overflow: hidden;
}

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

.approach-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
}

.approach-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.approach-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.commitment-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.commitment-content-center h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.commitment-content-center p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.commitment-content-center .cta-secondary {
    margin-top: 1rem;
}

.services-detailed {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.service-detail-split {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    align-items: stretch;
    min-height: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8f0e9;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.service-features {
    margin: 2rem 0;
}

.service-features h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-features ul {
    list-style-position: inside;
    color: var(--text-light);
}

.service-features ul li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.cta-section-centered {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    text-align: center;
    color: var(--bg-white);
}

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

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

.cta-section-centered .cta-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.cta-section-centered .cta-primary:hover {
    background-color: var(--bg-light);
}

.contact-info-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    gap: 3rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.map-placeholder p {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.map-note {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.contact-approach {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.approach-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.approach-content-centered h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.approach-content-centered p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.directions-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.directions-split.reverse {
    flex-direction: row-reverse;
}

.directions-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.directions-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.directions-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.directions-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.directions-image {
    flex: 1;
    background-color: #e8f0e9;
    overflow: hidden;
}

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

.thanks-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

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

.thanks-content-centered h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-content-centered p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-confirmation {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-confirmation p {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-info {
    margin: 3rem 0;
    text-align: left;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.thanks-info h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-steps {
    list-style-position: inside;
    color: var(--text-light);
}

.next-steps li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.btn-back-home,
.btn-learn-more {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, background-color 0.3s;
}

.btn-back-home {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-back-home:hover {
    background-color: #234d24;
    transform: translateY(-2px);
}

.btn-learn-more {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-learn-more:hover {
    background-color: #7fa34f;
    transform: translateY(-2px);
}

.thanks-additional {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.additional-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

.additional-text {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.additional-text h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.additional-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.additional-text ul {
    list-style-position: inside;
    color: var(--text-light);
    margin-top: 1rem;
}

.additional-text ul li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.additional-image {
    flex: 1;
    background-color: #e8f0e9;
    overflow: hidden;
}

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

.legal-page {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style-type: disc;
}

.legal-content ul li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

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

.cookie-table thead {
    background-color: var(--bg-light);
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 1rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 968px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .service-card,
    .trust-section-split,
    .testimonials-split,
    .page-header-split,
    .philosophy-split,
    .approach-split,
    .service-detail-split,
    .contact-info-split,
    .directions-split,
    .additional-content-split,
    .form-container-split {
        flex-direction: column;
    }

    .service-card.reverse,
    .intro-split.reverse,
    .approach-split.reverse,
    .service-detail-split.reverse,
    .directions-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .service-info,
    .trust-content,
    .testimonial-content,
    .header-content,
    .philosophy-content,
    .approach-content,
    .service-detail-content,
    .directions-content,
    .additional-text {
        padding: 2rem;
    }

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

    .section-header-center h2,
    .page-header-centered h1 {
        font-size: 2rem;
    }

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

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

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

    .btn-back-home,
    .btn-learn-more {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .ad-disclosure {
        width: 100%;
        text-align: center;
        order: 3;
        margin-top: 1rem;
    }

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

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

    .services-grid-split {
        gap: 2rem;
    }

    .service-info h3 {
        font-size: 1.5rem;
    }

    .service-price {
        font-size: 1.5rem;
    }
}