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

:root {
    --primary-color: #2d5f4c;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1rem;
}

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

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

.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.main-nav a {
    color: var(--text-dark);
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-right {
    flex: 1;
    background-color: var(--border-color);
}

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

.hero-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #234939;
    transform: translateY(-2px);
    color: var(--bg-white);
}

.cta-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #6f5838;
    transform: translateY(-2px);
    color: var(--bg-white);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

.intro-image {
    flex: 1;
    background-color: var(--border-color);
}

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

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

.value-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.value-item {
    flex: 1 1 calc(50% - 2rem);
    padding: 3rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
}

.value-item:nth-child(2n) {
    background-color: var(--bg-white);
}

.services-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 0;
}

.services-content {
    flex: 1.2;
    padding: 3rem;
    background-color: var(--bg-light);
}

.services-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-card.selected {
    border-color: var(--primary-color);
    background-color: #f0f5f3;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.select-service {
    margin-top: 1rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #234939;
}

.form-container {
    flex: 0.8;
    padding: 3rem;
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
}

.form-wrapper {
    width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
}

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

.form-group input[readonly] {
    background-color: var(--bg-light);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 1rem;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

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

.form-notice {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.testimonial-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.testimonial-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
}

.testimonial-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
}

.testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-content cite {
    font-style: normal;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    opacity: 0.9;
}

.testimonial-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.process-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.process-section h2 {
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    gap: 2rem;
}

.step {
    flex: 1;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.science-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

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

.science-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.science-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: var(--bg-light);
}

.citation {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

.citation:hover {
    text-decoration: underline;
}

.final-cta {
    background-color: var(--secondary-color);
    padding: 5rem 2rem;
    text-align: center;
}

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

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

.final-cta p {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

.footer-col ul li a {
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.footer-references h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references ol li {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #ccc;
}

.footer-references ol li a {
    color: var(--accent-color);
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px 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 {
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

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

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

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

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

.about-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 60vh;
}

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

.about-hero-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.lead-text {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
}

.story-section {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

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

.values-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.values-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: var(--bg-white);
}

.principle {
    margin-bottom: 2.5rem;
}

.approach-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-block {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--bg-light);
    border-radius: 6px;
    overflow: hidden;
}

.approach-block img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.approach-block h3 {
    padding: 1.5rem 1.5rem 0.5rem;
}

.approach-block p {
    padding: 0 1.5rem 1.5rem;
}

.impact-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.impact-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: var(--bg-light);
}

.impact-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.team-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-member {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.team-member .role {
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cta-about {
    background-color: var(--primary-color);
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 5rem;
}

.cta-about h2 {
    color: var(--bg-white);
}

.cta-about p {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

.service-detail-card {
    display: flex;
    margin-bottom: 3rem;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
    background-color: var(--bg-light);
}

.service-detail-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.service-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    margin-top: 2rem;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.comparison-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-table {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.comparison-cell {
    flex: 1;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.comparison-row.header .comparison-cell {
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.comparison-row:not(.header):nth-child(even) {
    background-color: var(--bg-light);
}

.custom-section {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--bg-light);
}

.contact-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.contact-intro {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
}

.contact-info {
    flex: 1;
    padding: 3rem;
    background-color: var(--bg-light);
}

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

.address-line,
.hours-line {
    margin-bottom: 0.3rem;
}

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

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
    position: relative;
    background-color: var(--border-color);
}

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

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: rgba(45, 95, 76, 0.9);
    color: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 4px;
}

.map-overlay p {
    margin: 0;
    font-size: 0.95rem;
}

.faq-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.direction-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.direction-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.direction-option {
    flex: 1;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.contact-cta {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--secondary-color);
}

.contact-cta h2 {
    color: var(--bg-white);
}

.contact-cta p {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.thanks-hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.thanks-content {
    text-align: center;
}

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

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.next-steps {
    margin: 4rem 0;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.step-box {
    flex: 1;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.step-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.meanwhile {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.meanwhile-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 1rem auto 0;
}

.meanwhile-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.meanwhile-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

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

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

.testimonial-thanks {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.testimonial-box p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-box cite {
    font-style: normal;
    color: var(--text-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

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

.legal-table th {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
}

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

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

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

.cookie-table th {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .services-split,
    .testimonial-split,
    .science-split,
    .about-hero-split,
    .values-split,
    .impact-split,
    .service-detail-card,
    .contact-split {
        flex-direction: column;
    }

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

    .process-steps,
    .steps-grid,
    .direction-grid {
        flex-direction: column;
    }

    .value-item,
    .approach-block,
    .team-member,
    .faq-item {
        flex: 1 1 100%;
    }

    .comparison-table {
        overflow-x: auto;
    }

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

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}