:root {
    --primary-color: #2c5f3f;
    --primary-dark: #1a3d28;
    --accent-color: #6b9b7d;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --transition: all 0.3s ease;
}

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

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);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: var(--shadow-lg);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

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

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

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

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

.nav-main {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: none;
    gap: 2rem;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

.hero-split,
.about-hero-split {
    background: var(--bg-light);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.cta-primary,
.cta-secondary,
.cta-outline {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    text-align: center;
}

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

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.cta-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.intro-split,
.testimonial-split,
.facility-split,
.commitment-split,
.services-intro-split,
.services-cta-split,
.thanks-info-split,
.booking-cta-split,
.about-hero-split,
.team-split,
.contact-split {
    padding: 4rem 1.5rem;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.split-container.reverse {
    flex-direction: column;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.split-text p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.value-cards {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 2rem;
}

.cards-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.value-card p {
    color: var(--text-light);
    margin: 0;
}

.services-preview-split {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.service-quick-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-item {
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.service-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-item p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.price {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

blockquote {
    background: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    margin: 0;
}

blockquote p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

.approach-section {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.step-text h3 {
    margin-bottom: 0.5rem;
}

.step-text p {
    color: var(--text-light);
    margin: 0;
}

.booking-split {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.booking-benefits ul {
    list-style: none;
    padding: 0;
}

.booking-benefits li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.booking-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.split-form {
    flex: 1;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 63, 0.1);
}

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

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    text-align: center;
}

.trust-indicators {
    padding: 4rem 1.5rem;
    background: var(--primary-color);
    color: white;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

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

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

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

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

.final-cta-split {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}

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

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

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

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

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.875rem;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.sticky-cta:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.story-section {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

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

.story-text h2 {
    margin-bottom: 1.5rem;
}

.story-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.highlight-item h3 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--text-light);
    margin: 0;
}

.values-section {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
}

.values-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-block {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.value-block h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-block p {
    color: var(--text-light);
    margin: 0;
}

.facility-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.facility-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.facility-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.credentials-section {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.credentials-content {
    max-width: 1200px;
    margin: 0 auto;
}

.credentials-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.credential-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.credential-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.credential-item p {
    color: var(--text-light);
    margin: 0;
}

.services-hero {
    background: var(--bg-light);
    padding: 3rem 1.5rem;
}

.services-hero .hero-content {
    text-align: center;
    padding: 2rem 1.5rem;
}

.services-hero h1 {
    margin-bottom: 1rem;
}

.services-hero p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    padding: 4rem 1.5rem;
}

.services-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.service-card-split.reverse {
    flex-direction: column;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.service-info > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-details {
    margin-top: 1.5rem;
}

.service-details h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.service-details ul {
    color: var(--text-light);
}

.duration {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1rem;
}

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

.price-display {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

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

.price-note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.btn-book {
    display: block;
    padding: 0.875rem 2rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
}

.btn-book:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-booking img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.pricing-notes {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.notes-content {
    max-width: 1200px;
    margin: 0 auto;
}

.notes-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.note-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.note-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.note-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-hero {
    background: var(--bg-light);
    padding: 3rem 1.5rem;
}

.contact-hero .hero-content {
    text-align: center;
    padding: 2rem 1.5rem;
}

.contact-hero h1 {
    margin-bottom: 1rem;
}

.contact-hero p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.info-block {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.info-block p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-block p:last-child {
    margin-bottom: 0;
}

.info-note {
    font-size: 0.875rem;
    font-style: italic;
}

.directions-section {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.directions-content {
    max-width: 1200px;
    margin: 0 auto;
}

.directions-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.directions-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.direction-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.direction-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.direction-item p {
    color: var(--text-light);
    margin: 0;
}

.faq-section {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.faq-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.faq-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

.faq-item p {
    color: var(--text-light);
    margin: 0;
}

.thanks-hero {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

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

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

.thanks-content h1 {
    margin-bottom: 1rem;
}

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

.service-confirmation {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
    margin-top: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.next-steps {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.steps-content {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    gap: 1.5rem;
}

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

.step-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.step-card p {
    color: var(--text-light);
    margin: 0;
}

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

.contact-quick p {
    margin-bottom: 0.5rem;
}

.contact-quick p:last-child {
    margin-bottom: 0;
}

.thanks-resources {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.resources-content {
    max-width: 1200px;
    margin: 0 auto;
}

.resources-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.resource-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.resource-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    color: var(--primary-color);
}

.resource-card p {
    color: var(--text-light);
    margin: 0;
}

.legal-header {
    background: var(--bg-light);
    padding: 3rem 1.5rem;
}

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

.legal-header h1 {
    margin-bottom: 0.5rem;
}

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

.legal-body {
    padding: 4rem 1.5rem;
}

.legal-body h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.legal-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.legal-body p,
.legal-body li {
    color: var(--text-light);
    line-height: 1.8;
}

.legal-body ul {
    margin-bottom: 1.5rem;
}

.legal-body strong {
    color: var(--text-dark);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.data-table th {
    font-weight: 600;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table tbody tr:hover {
    background: var(--bg-light);
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
        padding: 5rem 2rem;
    }

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

    .split-container {
        flex-direction: row;
        align-items: center;
    }

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

    .cards-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 0 0 calc(33.333% - 1.5rem);
    }

    .service-quick-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .approach-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .stats-row {
        flex-direction: row;
        justify-content: space-around;
    }

    .cta-group {
        flex-direction: row;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .team-highlights {
        flex-direction: row;
    }

    .highlight-item {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-block {
        flex: 0 0 calc(50% - 1rem);
    }

    .credentials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .credential-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .service-card-split {
        flex-direction: row;
        align-items: center;
    }

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

    .notes-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .note-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-block {
        flex: 0 0 calc(50% - 1rem);
    }

    .directions-split {
        flex-direction: row;
    }

    .direction-item {
        flex: 1;
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .steps-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .resources-grid {
        flex-direction: row;
    }

    .resource-card {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 1rem 1.5rem;
        box-shadow: var(--shadow-md);
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}