/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2e7d32;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

/* Container Layouts */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.main-nav {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

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

.nav-menu a {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

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

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

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 3rem 2rem 3rem 4rem;
    display: flex;
    align-items: center;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-visual {
    flex: 1;
    min-height: 500px;
}

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

/* Intro Section */
.intro-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.intro-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Split Sections */
.value-split,
.approach-split,
.story-split,
.cta-split,
.qualifications-split,
.about-intro-split,
.contact-split,
.about-cta-split {
    display: flex;
    align-items: center;
    min-height: 600px;
}

.value-split.reverse,
.approach-split.reverse,
.story-split.reverse,
.cta-split.reverse {
    flex-direction: row-reverse;
}

.value-content,
.approach-content,
.story-content,
.cta-content,
.qual-content,
.about-content,
.contact-info {
    flex: 1;
    padding: 4rem;
}

.value-content h2,
.approach-content h2,
.story-content h2,
.cta-content h2,
.qual-content h2,
.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.value-content p,
.approach-content p,
.story-content p,
.cta-content p,
.qual-content p,
.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.value-visual,
.approach-visual,
.story-visual,
.cta-visual,
.qual-visual,
.about-visual,
.contact-map {
    flex: 1;
    min-height: 500px;
}

.value-visual img,
.approach-visual img,
.story-visual img,
.cta-visual img,
.qual-visual img,
.about-visual img,
.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.cta-primary,
.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cta-primary:hover,
.btn-primary:hover {
    background-color: #1e5d22;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.btn-submit:hover {
    background-color: #1e5d22;
}

/* Services Preview */
.services-preview {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

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

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

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

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

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.service-link:hover {
    text-decoration: underline;
}

/* Approach List */
.approach-list {
    margin-top: 2rem;
}

.approach-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.approach-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.approach-text h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.approach-text p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonial */
.testimonial-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.testimonial {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
}

.testimonial footer {
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Forms */
.inline-form {
    margin-top: 2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.inline-form input,
.inline-form select {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

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

.service-form {
    max-width: 600px;
    margin: 2rem auto;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

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

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-item {
    text-align: center;
}

.trust-stat {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col a:hover {
    color: white;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    padding: 1rem;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-btn {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: inline-block;
    transition: var(--transition);
}

.sticky-cta-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
}

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

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

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

.btn-accept:hover {
    background-color: #1e5d22;
}

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

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

/* Page Header */
.page-header {
    padding: 4rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Services Detail */
.services-detail {
    padding: 4rem 0;
}

.service-detail-card {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
    background-color: var(--bg-light);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
    background-color: var(--bg-white);
}

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

.service-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.service-pricing-box {
    margin-top: 2rem;
    padding: 2rem;
    background-color: rgba(26, 77, 122, 0.05);
    border-left: 4px solid var(--primary-color);
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

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

.service-detail-visual {
    flex: 1;
    min-height: 500px;
}

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

.service-cta {
    padding: 5rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.service-cta h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Philosophy Section */
.philosophy-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.philosophy-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.team-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 1.5rem 1.5rem 0.5rem;
}

.team-role {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 0 1.5rem 1rem;
}

.team-card p {
    color: var(--text-light);
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.qual-list {
    list-style-position: inside;
    color: var(--text-light);
    line-height: 2;
    font-size: 1.1rem;
}

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

.values-quote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: white;
    font-style: italic;
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
}

.values-quote footer {
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Details */
.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-text a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

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

.approach-header {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.faq-section {
    padding: 5rem 0;
}

.faq-section h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

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

/* Thanks Page */
.thanks-hero {
    padding: 5rem 0;
    text-align: center;
    background-color: var(--bg-light);
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    display: inline-block;
}

.thanks-content h1 {
    font-size: 2.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-service {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(46, 125, 50, 0.1);
    border-radius: 8px;
}

.next-steps {
    padding: 5rem 0;
}

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

.steps-list {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
}

.step-text h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-resources {
    padding: 5rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.thanks-resources h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    text-align: left;
    transition: var(--transition);
    position: relative;
}

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

.resource-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.resource-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.resource-arrow {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.thanks-contact {
    padding: 4rem 0;
}

.contact-box {
    text-align: center;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-box h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.email-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
}

.legal-page h1 {
    font-size: 2.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.legal-section h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 1rem 0 0.5rem;
}

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

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
}

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

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

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

.cookie-table td {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split,
    .value-split,
    .approach-split,
    .story-split,
    .cta-split,
    .qualifications-split,
    .about-intro-split,
    .contact-split,
    .about-cta-split,
    .service-detail-card {
        flex-direction: column;
    }

    .value-split.reverse,
    .approach-split.reverse,
    .story-split.reverse,
    .cta-split.reverse,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .hero-content,
    .value-content,
    .approach-content,
    .story-content,
    .cta-content,
    .qual-content,
    .about-content,
    .contact-info,
    .service-detail-content {
        padding: 2rem;
    }

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

    .value-content h2,
    .approach-content h2,
    .story-content h2,
    .cta-content h2,
    .qual-content h2,
    .about-content h2 {
        font-size: 2rem;
    }

    .services-grid,
    .philosophy-grid,
    .team-grid,
    .approach-steps {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .section-header-center h2 {
        font-size: 2rem;
    }

    .trust-grid {
        gap: 2rem;
    }

    .trust-stat {
        font-size: 2.25rem;
    }

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