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

:root {
    --primary-green: #2d5016;
    --medium-green: #4a7c2a;
    --light-green: #6fa03f;
    --accent-gold: #d4a574;
    --dark-text: #1a1a1a;
    --medium-text: #4a4a4a;
    --light-text: #6a6a6a;
    --background-light: #f8f9f6;
    --background-cream: #faf8f3;
    --border-color: #e0e4dc;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-text);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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: 250px;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-cookie {
    background-color: var(--medium-green);
    color: var(--white);
}

.btn-cookie:hover {
    background-color: var(--light-green);
}

.btn-cookie-alt {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

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

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

.nav-right a {
    font-size: 1rem;
    color: var(--medium-text);
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: var(--primary-green);
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem 4rem 4rem;
    background-color: var(--background-cream);
}

.hero-text {
    max-width: 550px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--medium-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.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-color: var(--primary-green);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--medium-green);
    transform: translateY(-2px);
}

.intro-section {
    padding: 5rem 3rem;
    background-color: var(--white);
}

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

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

.intro-content p {
    font-size: 1.15rem;
    color: var(--medium-text);
    line-height: 1.8;
}

.split-content-alt {
    display: flex;
    min-height: 500px;
}

.split-image-right {
    flex: 1;
    order: 2;
}

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

.split-text-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: var(--background-light);
    order: 1;
}

.split-text-left h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.split-text-left p {
    font-size: 1.05rem;
    color: var(--medium-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cta-inline {
    display: inline-block;
    color: var(--medium-green);
    font-weight: 600;
    border-bottom: 2px solid var(--medium-green);
    padding-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: var(--light-green);
    border-bottom-color: var(--light-green);
}

.services-overview {
    padding: 5rem 3rem;
    background-color: var(--background-cream);
}

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

.services-header h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.services-header p {
    font-size: 1.15rem;
    color: var(--medium-text);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.service-content h4 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    font-size: 1rem;
    color: var(--medium-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 1.6rem;
    color: var(--accent-gold);
    font-weight: 700;
}

.testimonial-section {
    padding: 4rem 3rem;
    background-color: var(--primary-green);
}

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

.testimonial-container blockquote {
    text-align: center;
}

.testimonial-container p {
    font-size: 1.4rem;
    color: var(--white);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-container cite {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
}

.split-content {
    display: flex;
    min-height: 500px;
}

.split-text-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: var(--white);
    order: 2;
}

.split-text-right h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.split-text-right p {
    font-size: 1.05rem;
    color: var(--medium-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.split-image-left {
    flex: 1;
    order: 1;
}

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

.cta-section-full {
    padding: 5rem 3rem;
    background-color: var(--background-light);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.15rem;
    color: var(--medium-text);
    margin-bottom: 2rem;
}

.cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: var(--medium-green);
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background-color: var(--light-green);
    transform: translateY(-2px);
}

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

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

.form-left-side {
    flex: 1;
}

.form-left-side h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-left-side p {
    font-size: 1.05rem;
    color: var(--medium-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    font-size: 1rem;
    color: var(--medium-text);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--medium-green);
    font-weight: bold;
}

.form-right-side {
    flex: 1;
}

.booking-form {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    background-color: var(--white);
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--primary-green);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.footer-section a {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

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

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

.page-hero {
    padding: 5rem 3rem 4rem;
    background-color: var(--background-cream);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: var(--medium-text);
}

.split-text-left-wide {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: var(--white);
    order: 1;
}

.split-text-left-wide h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.split-text-left-wide p {
    font-size: 1.05rem;
    color: var(--medium-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.split-image-right-narrow {
    flex: 0.8;
    order: 2;
}

.split-image-right-narrow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.values-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

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

.value-item {
    flex: 1;
    min-width: 280px;
}

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

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

.team-section {
    padding: 5rem 3rem;
    background-color: var(--background-cream);
}

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

.team-container h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.team-container p {
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-section {
    padding: 5rem 3rem;
    background-color: var(--primary-green);
    text-align: center;
}

.cta-section .cta-content h2 {
    color: var(--white);
}

.cta-section .cta-content p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .cta-primary {
    background-color: var(--accent-gold);
    color: var(--primary-green);
}

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

.page-hero-alt {
    padding: 5rem 3rem 4rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%);
    text-align: center;
}

.page-hero-alt .page-hero-content h1 {
    color: var(--white);
}

.page-hero-alt .page-hero-content p {
    color: rgba(255, 255, 255, 0.9);
}

.services-intro {
    padding: 4rem 3rem;
    background-color: var(--background-cream);
}

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

.services-intro-content p {
    font-size: 1.15rem;
    color: var(--medium-text);
    line-height: 1.8;
}

.service-detail-split {
    display: flex;
    min-height: 450px;
}

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

.service-detail-text h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin: 2rem 0 1.5rem;
}

.price-label {
    font-size: 0.95rem;
    color: var(--light-text);
}

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

.cta-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--medium-green);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background-color: var(--light-green);
}

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

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

.service-detail-split-alt {
    display: flex;
    min-height: 450px;
    background-color: var(--background-light);
}

.service-detail-split-alt .service-detail-text {
    order: 2;
    background-color: var(--background-light);
}

.service-detail-split-alt .service-detail-image {
    order: 1;
}

.service-faq {
    padding: 5rem 3rem;
    background-color: var(--background-cream);
}

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

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

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

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

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

.cta-section-final {
    padding: 5rem 3rem;
    background-color: var(--medium-green);
    text-align: center;
}

.cta-section-final .cta-content h2 {
    color: var(--white);
}

.cta-section-final .cta-content p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-section-final .cta-primary {
    background-color: var(--white);
    color: var(--primary-green);
}

.cta-section-final .cta-primary:hover {
    background-color: var(--background-cream);
}

.page-hero-contact {
    padding: 5rem 3rem 4rem;
    background-color: var(--background-light);
    text-align: center;
}

.page-hero-contact .page-hero-content h1 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero-contact .page-hero-content p {
    font-size: 1.2rem;
    color: var(--medium-text);
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info-side {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: var(--background-cream);
}

.contact-info-content {
    max-width: 500px;
}

.contact-info-content h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-info-content p {
    font-size: 1.05rem;
    color: var(--medium-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.contact-detail h3 {
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-detail p {
    font-size: 1rem;
    color: var(--medium-text);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-detail a {
    color: var(--medium-green);
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--light-green);
}

.contact-note {
    background-color: rgba(77, 124, 42, 0.1);
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    margin: 0;
}

.contact-note a {
    color: var(--medium-green);
    font-weight: 600;
    text-decoration: underline;
}

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-availability {
    padding: 4rem 3rem;
    background-color: var(--white);
}

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

.availability-content h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.availability-content p {
    font-size: 1.05rem;
    color: var(--medium-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.contact-cta {
    padding: 4rem 3rem;
    background-color: var(--background-light);
    text-align: center;
}

.contact-cta .cta-content h2 {
    font-size: 2.2rem;
}

.legal-hero {
    padding: 4rem 3rem 3rem;
    background-color: var(--background-light);
    text-align: center;
}

.legal-hero-content h1 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.legal-hero-content p {
    font-size: 1rem;
    color: var(--light-text);
}

.legal-content {
    padding: 4rem 3rem;
    background-color: var(--white);
}

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

.legal-container h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin: 2.5rem 0 1rem;
    font-weight: 600;
}

.legal-container h2:first-child {
    margin-top: 0;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: var(--medium-green);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.legal-container p {
    font-size: 1rem;
    color: var(--medium-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-container ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
}

.legal-container li {
    font-size: 1rem;
    color: var(--medium-text);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

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

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

.thanks-hero {
    padding: 5rem 3rem 4rem;
    background-color: var(--background-light);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.thanks-content p {
    font-size: 1.15rem;
    color: var(--medium-text);
    line-height: 1.7;
}

.thanks-details {
    padding: 4rem 3rem;
    background-color: var(--white);
}

.thanks-details-content {
    max-width: 1000px;
    margin: 0 auto;
}

.thanks-details-content h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 600;
}

.next-steps {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

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

.step h3 {
    font-size: 1.3rem;
    color: var(--medium-green);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step p {
    font-size: 1rem;
    color: var(--medium-text);
    line-height: 1.6;
}

.thanks-service-info {
    padding: 4rem 3rem;
    background-color: var(--background-cream);
}

.service-info-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.service-info-content p {
    font-size: 1.1rem;
    color: var(--medium-text);
    line-height: 1.6;
}

.thanks-additional {
    padding: 4rem 3rem;
    background-color: var(--white);
}

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

.additional-content h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 600;
}

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

.additional-item {
    flex: 1;
    min-width: 280px;
}

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

.additional-item p {
    font-size: 1rem;
    color: var(--medium-text);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.link-arrow {
    display: inline-block;
    color: var(--medium-green);
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: var(--light-green);
    transform: translateX(5px);
}

@media (max-width: 968px) {
    .nav-split {
        padding: 1.5rem 2rem;
    }

    .nav-right {
        gap: 1.5rem;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

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

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

    .split-text-left,
    .split-text-right,
    .split-text-left-wide {
        padding: 3rem 2rem;
    }

    .form-container-split {
        flex-direction: column;
        gap: 2rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }

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

    .service-detail-split,
    .service-detail-split-alt {
        flex-direction: column;
    }

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

    .next-steps,
    .additional-links {
        flex-direction: column;
    }
}

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

    .nav-right {
        gap: 1rem;
    }

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

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

    .intro-content h2,
    .services-header h2,
    .page-hero-content h1 {
        font-size: 1.8rem;
    }

    .split-text-left h3,
    .split-text-right h3 {
        font-size: 1.5rem;
    }

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

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie,
    .btn-cookie-alt {
        width: 100%;
    }
}