:root {
    --primary-color: #2d5016;
    --secondary-color: #5a8c3a;
    --accent-color: #8fbc5f;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --border-light: #e0e0e0;
    --transition: all 0.3s ease;
}

* {
    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: var(--text-dark);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accept {
    background: var(--secondary-color);
    color: white;
}

.btn-accept:hover {
    background: var(--primary-color);
}

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

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-right a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-right a:hover::after {
    width: 100%;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem;
    background: var(--light-bg);
}

.hero-content {
    max-width: 600px;
}

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

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

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 4rem 5%;
    background: var(--primary-color);
    color: white;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.approach-split {
    display: flex;
    align-items: stretch;
}

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

.approach-image {
    flex: 1;
}

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

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

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

.approach-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.link-arrow:hover {
    color: var(--primary-color);
}

.services-grid {
    padding: 6rem 5%;
    background: var(--light-bg);
}

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

.section-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro p {
    font-size: 1.2rem;
    color: #555;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

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

.service-icon {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

.service-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.7;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.btn-select-service {
    padding: 0.85rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-select-service:hover {
    background: var(--primary-color);
}

.testimonial-split {
    display: flex;
    align-items: stretch;
}

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

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.testimonial-author strong {
    font-size: 1.2rem;
}

.testimonial-author span {
    opacity: 0.85;
}

.testimonial-image {
    flex: 1;
}

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

.cta-split {
    display: flex;
    align-items: stretch;
}

.cta-left {
    flex: 1;
    padding: 5rem;
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-left p {
    font-size: 1.2rem;
    color: #555;
}

.cta-right {
    flex: 1;
    padding: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inline-form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

.btn-submit {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-color);
}

.process-flow {
    padding: 6rem 5%;
    background: white;
}

.process-flow h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

.process-step p {
    line-height: 1.7;
}

.trust-indicators {
    padding: 6rem 5%;
    background: var(--light-bg);
}

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

.indicator-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.indicator-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.indicator-item p {
    line-height: 1.7;
}

.site-footer {
    background: var(--dark-bg);
    color: white;
    padding: 4rem 5% 2rem;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.page-hero {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.page-hero.dark {
    background: var(--dark-bg);
}

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

.hero-content-centered h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content-centered p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.story-split {
    display: flex;
    align-items: stretch;
}

.story-text {
    flex: 1.2;
    padding: 5rem;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
}

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

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

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.value-card p {
    line-height: 1.7;
}

.team-approach {
    padding: 6rem 5%;
}

.approach-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

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

.approach-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
}

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

.highlight-item {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
}

.highlight-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.highlight-item p {
    line-height: 1.7;
}

.impact-showcase {
    padding: 6rem 5%;
    background: var(--primary-color);
    color: white;
}

.impact-showcase h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.impact-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.impact-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.impact-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.impact-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.philosophy-split {
    display: flex;
    align-items: stretch;
}

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

.philosophy-image {
    flex: 1;
}

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

.philosophy-text {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light-bg);
}

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

.philosophy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-centered {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.btn-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.2rem;
}

.btn-large:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 0;
}

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

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

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

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

.service-icon-large {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

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

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

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

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    line-height: 1.6;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-pricing-detail {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: #666;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.price-note {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.cta-full-width {
    padding: 6rem 5%;
    background: var(--secondary-color);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.btn-large-white {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--secondary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.2rem;
}

.btn-large-white:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.contact-hero {
    padding: 6rem 5%;
    background: var(--light-bg);
}

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

.contact-intro h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.contact-split {
    display: flex;
    gap: 4rem;
    padding: 4rem 5%;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-details {
    flex: 1;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 8px;
}

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

.contact-details p {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.info-block p {
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.info-block a {
    color: var(--secondary-color);
}

.info-block a:hover {
    color: var(--primary-color);
}

.info-block .note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.location-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.location-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.visit-note {
    padding: 1.5rem;
    background: rgba(143, 188, 95, 0.1);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.visit-note p {
    line-height: 1.7;
    margin: 0;
}

.faq-contact {
    padding: 6rem 5%;
    background: var(--light-bg);
}

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

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

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    line-height: 1.7;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
}

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

.thanks-icon {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555;
}

.service-selected {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step p {
    flex: 1;
    line-height: 1.7;
    padding-top: 0.5rem;
}

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

.btn-primary {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--primary-color);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

.thanks-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.thanks-footer a {
    color: var(--secondary-color);
}

.thanks-footer a:hover {
    color: var(--primary-color);
}

.legal-content {
    padding: 4rem 5%;
}

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

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

.updated {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.legal-container h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-dark);
}

.legal-container p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .hero-split,
    .approach-split,
    .testimonial-split,
    .cta-split,
    .story-split,
    .philosophy-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .approach-split.reverse,
    .philosophy-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .approach-text,
    .approach-image,
    .cta-left,
    .cta-right {
        padding: 3rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .stats-bar {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content h1,
    .hero-content-centered h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .split-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .service-cards,
    .process-steps,
    .values-grid,
    .team-highlights {
        flex-direction: column;
    }

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

    .section-intro h2,
    .approach-text h2 {
        font-size: 2rem;
    }

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