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

:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2c;
    --accent-green: #6ba83d;
    --light-cream: #f8f6f1;
    --dark-text: #1a1a1a;
    --mid-gray: #5a5a5a;
    --light-gray: #e8e8e8;
    --white: #ffffff;
}

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.nav-cta {
    background: var(--secondary-green);
    color: var(--white);
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
}

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

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

.hero-content {
    flex: 1;
    padding: 4rem 5% 4rem 8%;
}

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

.hero-content p {
    font-size: 1.2rem;
    color: var(--mid-gray);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    height: 85vh;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--secondary-green);
    color: var(--white);
    padding: 1rem 2.2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: var(--primary-green);
}

.cta-secondary {
    display: inline-block;
    border: 2px solid var(--secondary-green);
    color: var(--secondary-green);
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.cta-large {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 1.2rem 2.8rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.cta-large:hover {
    background: var(--secondary-green);
}

.intro-split {
    display: flex;
    align-items: center;
}

.intro-image {
    flex: 1;
    height: 550px;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 4rem 8% 4rem 5%;
}

.intro-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--mid-gray);
    margin-bottom: 1.2rem;
}

.value-cards {
    display: flex;
    gap: 3rem;
    padding: 5rem 8%;
    background: var(--light-cream);
}

.card-item {
    flex: 1;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 6px;
}

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

.card-item p {
    color: var(--mid-gray);
    line-height: 1.7;
}

.services-split {
    padding: 5rem 8%;
}

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

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

.services-header p {
    font-size: 1.1rem;
    color: var(--mid-gray);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-content {
    flex: 1;
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.service-content p {
    color: var(--mid-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-green);
}

.service-image {
    flex: 1;
    height: 300px;
    overflow: hidden;
}

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

.trust-split {
    display: flex;
    background: var(--light-cream);
    padding: 5rem 0;
}

.trust-content {
    flex: 1;
    padding: 3rem 5% 3rem 8%;
}

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

.trust-content p {
    font-size: 1.1rem;
    color: var(--mid-gray);
    margin-bottom: 1.5rem;
}

.trust-visual {
    flex: 1;
    padding: 3rem 8% 3rem 5%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-box {
    background: var(--white);
    padding: 2rem;
    border-left: 4px solid var(--accent-green);
    border-radius: 4px;
}

.testimonial-box p {
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-box span {
    font-size: 0.9rem;
    color: var(--mid-gray);
}

.approach-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.approach-image {
    flex: 1;
    height: 600px;
    overflow: hidden;
}

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

.approach-content {
    flex: 1;
    padding: 3rem 8% 3rem 5%;
}

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

.approach-content p {
    font-size: 1.1rem;
    color: var(--mid-gray);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.form-section-split {
    display: flex;
    background: var(--primary-green);
    padding: 5rem 0;
}

.form-intro {
    flex: 1;
    padding: 3rem 5% 3rem 8%;
    color: var(--white);
}

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

.form-intro p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.form-container {
    flex: 1;
    padding: 3rem 8% 3rem 5%;
}

.service-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

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

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

.cta-submit {
    width: 100%;
    background: var(--secondary-green);
    color: var(--white);
    padding: 1.1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-submit:hover {
    background: var(--primary-green);
}

.why-us-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.why-content {
    flex: 1;
    padding: 3rem 5% 3rem 8%;
}

.why-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--dark-text);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
    font-size: 1.3rem;
}

.why-content p {
    color: var(--mid-gray);
    font-size: 1.05rem;
}

.why-visual {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta-split {
    background: var(--light-cream);
    padding: 5rem 8%;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    color: var(--mid-gray);
    margin-bottom: 2rem;
}

.footer-split {
    display: flex;
    gap: 4rem;
    padding: 4rem 8%;
    background: var(--dark-text);
    color: var(--white);
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
}

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

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

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

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

.cookie-content p {
    flex: 1;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

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

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

.cookie-btn:hover {
    opacity: 0.8;
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.page-hero-split .hero-content {
    flex: 1;
    padding: 3rem 5% 3rem 8%;
}

.page-hero-split .hero-content h1 {
    font-size: 2.8rem;
}

.page-hero-split .hero-visual {
    flex: 1;
    height: 60vh;
}

.story-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.story-text {
    flex: 1;
    padding: 3rem 5% 3rem 8%;
}

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

.story-text p {
    font-size: 1.1rem;
    color: var(--mid-gray);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

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

.philosophy-split {
    display: flex;
    align-items: center;
    background: var(--light-cream);
    padding: 5rem 0;
}

.philosophy-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

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

.philosophy-text {
    flex: 1;
    padding: 3rem 8% 3rem 5%;
}

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

.philosophy-text p {
    font-size: 1.1rem;
    color: var(--mid-gray);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.team-section {
    padding: 5rem 8%;
}

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

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

.team-member {
    flex: 1;
    background: var(--light-cream);
    padding: 2.5rem;
    border-radius: 6px;
}

.member-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.member-info span {
    display: block;
    font-size: 0.95rem;
    color: var(--secondary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.member-info p {
    color: var(--mid-gray);
    line-height: 1.7;
}

.values-split {
    display: flex;
    padding: 5rem 0;
}

.values-content {
    flex: 1;
    padding: 3rem 5% 3rem 8%;
}

.values-content h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--primary-green);
}

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

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: var(--secondary-green);
}

.value-item p {
    color: var(--mid-gray);
    line-height: 1.7;
}

.values-image {
    flex: 1;
    height: 650px;
    overflow: hidden;
}

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

.approach-detail-split {
    display: flex;
    align-items: center;
    background: var(--light-cream);
    padding: 5rem 0;
}

.approach-detail-split .approach-image {
    height: 550px;
}

.approach-detail-split .approach-text {
    flex: 1;
    padding: 3rem 8% 3rem 5%;
}

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

.approach-detail-split p {
    font-size: 1.05rem;
    color: var(--mid-gray);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.commitment-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.commitment-content {
    flex: 1;
    padding: 3rem 5% 3rem 8%;
}

.commitment-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.commitment-content p {
    font-size: 1.1rem;
    color: var(--mid-gray);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.commitment-visual {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.commitment-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--light-gray);
}

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

.service-info {
    flex: 1;
    padding: 3rem 5% 3rem 8%;
}

.service-detail-split.reverse .service-info {
    padding: 3rem 8% 3rem 5%;
}

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

.service-price {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-green);
    margin-bottom: 1.5rem;
}

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

.service-info h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--dark-text);
}

.service-info ul {
    margin-bottom: 2rem;
}

.service-info li {
    color: var(--mid-gray);
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-info li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.service-visual {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

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

.how-it-works-split {
    display: flex;
    background: var(--light-cream);
    padding: 5rem 0;
}

.how-content {
    flex: 1;
    padding: 3rem 5% 3rem 8%;
}

.how-content h2 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    color: var(--primary-green);
}

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

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: var(--secondary-green);
}

.step-item p {
    color: var(--mid-gray);
    line-height: 1.7;
}

.how-visual {
    flex: 1;
    height: auto;
    display: flex;
    align-items: center;
    padding: 3rem 8% 3rem 5%;
}

.how-visual img {
    width: 100%;
    border-radius: 8px;
}

.cta-services {
    text-align: center;
    padding: 5rem 8%;
}

.cta-services h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.cta-services p {
    font-size: 1.1rem;
    color: var(--mid-gray);
    margin-bottom: 2rem;
}

.contact-info-split {
    display: flex;
    padding: 5rem 0;
    gap: 4rem;
}

.contact-details {
    flex: 1;
    padding: 0 5% 0 8%;
}

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

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-green);
}

.contact-block p {
    color: var(--mid-gray);
    line-height: 1.8;
}

.contact-block a {
    color: var(--secondary-green);
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
}

.contact-map {
    flex: 1;
    padding: 0 8% 0 5%;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-area-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.service-area-info p {
    color: var(--mid-gray);
    line-height: 1.7;
}

.quick-contact-split {
    display: flex;
    align-items: center;
    background: var(--light-cream);
    padding: 4rem 0;
}

.quick-info {
    flex: 1;
    padding: 3rem 5% 3rem 8%;
}

.quick-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-green);
}

.quick-info p {
    font-size: 1.05rem;
    color: var(--mid-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.quick-visual {
    flex: 1;
    height: 400px;
    overflow: hidden;
}

.quick-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-split {
    display: flex;
    padding: 5rem 0;
}

.faq-content {
    flex: 1;
    padding: 3rem 5% 3rem 8%;
}

.faq-content h2 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    color: var(--primary-green);
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: var(--dark-text);
}

.faq-item p {
    color: var(--mid-gray);
    line-height: 1.7;
}

.faq-visual {
    flex: 1;
    height: auto;
    display: flex;
    align-items: center;
    padding: 3rem 8% 3rem 5%;
}

.faq-visual img {
    width: 100%;
    border-radius: 8px;
}

.final-contact-cta {
    background: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 4rem 8%;
}

.final-contact-cta h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.final-contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.thanks-split {
    display: flex;
    min-height: 70vh;
    padding: 5rem 0;
}

.thanks-content {
    flex: 1;
    padding: 3rem 5% 3rem 8%;
}

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

.thanks-content > p {
    font-size: 1.1rem;
    color: var(--mid-gray);
    margin-bottom: 2rem;
}

.thanks-info {
    background: var(--light-cream);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-green);
    margin-bottom: 3rem;
    border-radius: 4px;
}

.thanks-info p {
    color: var(--dark-text);
    margin: 0;
}

.thanks-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary-green);
}

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

.step {
    margin-bottom: 1.8rem;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-green);
}

.step p {
    color: var(--mid-gray);
    line-height: 1.7;
}

.thanks-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.thanks-visual {
    flex: 1;
    padding: 3rem 8% 3rem 5%;
}

.thanks-visual img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-reminder {
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 6px;
}

.contact-reminder h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.contact-reminder p {
    color: var(--mid-gray);
    margin-bottom: 0.5rem;
}

.contact-reminder a {
    color: var(--secondary-green);
    text-decoration: none;
}

.contact-reminder a:hover {
    text-decoration: underline;
}

.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 5%;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.last-updated {
    color: var(--mid-gray);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

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

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--secondary-green);
}

.legal-section p {
    color: var(--mid-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-section li {
    color: var(--mid-gray);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--secondary-green);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

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

.cookies-table th,
.cookies-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.cookies-table th {
    background: var(--light-cream);
    font-weight: 600;
    color: var(--dark-text);
}

.cookies-table td {
    color: var(--mid-gray);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .approach-split,
    .form-section-split,
    .why-us-split,
    .story-split,
    .philosophy-split,
    .values-split,
    .approach-detail-split,
    .commitment-split,
    .service-detail-split,
    .how-it-works-split,
    .contact-info-split,
    .quick-contact-split,
    .faq-split,
    .thanks-split {
        flex-direction: column;
    }

    .hero-visual,
    .intro-image,
    .story-image,
    .philosophy-image,
    .values-image,
    .approach-image,
    .why-visual,
    .commitment-visual,
    .service-visual,
    .quick-visual {
        height: 400px;
    }

    .hero-content,
    .intro-text,
    .trust-content,
    .approach-content,
    .form-intro,
    .form-container,
    .why-content,
    .story-text,
    .philosophy-text,
    .values-content,
    .commitment-content,
    .service-info,
    .how-content,
    .how-visual,
    .contact-details,
    .contact-map,
    .quick-info,
    .faq-content,
    .faq-visual,
    .thanks-content,
    .thanks-visual {
        padding: 2rem 8%;
    }

    .value-cards,
    .team-grid {
        flex-direction: column;
    }

    .footer-split {
        flex-wrap: wrap;
    }

    .nav-right {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .services-grid,
    .service-card {
        flex-direction: column;
    }

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

    .nav-right a:not(.nav-cta) {
        display: none;
    }

    .legal-page h1 {
        font-size: 2.2rem;
    }
}