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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

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

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

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
}

.nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav a {
    color: #475569;
    font-weight: 500;
    padding: 8px 0;
}

.nav a:hover {
    color: #2563eb;
}

.ad-disclosure {
    font-size: 13px;
    color: #64748b;
    padding: 5px 12px;
    background: #f1f5f9;
    border-radius: 4px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Hero Split Screen */
.hero-split {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

.hero-left,
.hero-right {
    flex: 1;
    min-width: 300px;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px 40px;
    background: #f8fafc;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-right {
    background: #e2e8f0;
    position: relative;
    overflow: hidden;
}

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

/* Split Content Sections */
.intro-section,
.benefits-section,
.approach-detail {
    padding: 80px 20px;
}

.split-content,
.split-reverse {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.content-text,
.content-image,
.benefits-text,
.benefits-image,
.approach-text,
.approach-image,
.insight-text,
.services-preview {
    flex: 1;
    min-width: 300px;
}

.content-text h2,
.benefits-text h2,
.approach-text h2,
.insight-text h2 {
    font-size: 36px;
    color: #0f172a;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.content-text p,
.benefits-text p,
.approach-text p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.content-image img,
.benefits-image img,
.approach-image img {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Problem Section */
.problem-section {
    padding: 80px 20px;
    background: #0f172a;
    color: #fff;
}

.problem-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.problem-section p {
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 50px;
    color: #cbd5e1;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.stat-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 15px;
}

.stat-card p {
    font-size: 16px;
    color: #e2e8f0;
    margin: 0;
}

/* Insight Section */
.insight-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.insight-text {
    margin-bottom: 40px;
}

.services-preview {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 22px;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

/* Trust Section */
.trust-section {
    padding: 80px 20px;
    background: #fff;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #0f172a;
    font-weight: 700;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

.testimonial p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #475569;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 20px;
}

/* Approach Section */
.approach-section {
    padding: 80px 20px;
    background: #fff;
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #0f172a;
    font-weight: 700;
}

.approach-section p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Scientific Section */
.scientific-section {
    padding: 80px 20px;
    background: #eff6ff;
}

.scientific-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #0f172a;
    text-align: center;
    font-weight: 700;
}

.scientific-section p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.citation {
    color: #2563eb;
    font-weight: 600;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: #1e40af;
}

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

.cta-box h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    color: #dbeafe;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Form Section */
.form-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 40px;
    text-align: center;
}

.form-intro h2 {
    font-size: 36px;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: #64748b;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-select,
.btn-submit,
.cta-primary,
.cta-secondary,
.cta-large {
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary,
.cta-primary,
.btn-submit,
.cta-large {
    background: #2563eb;
    color: #fff;
}

.btn-primary:hover,
.cta-primary:hover,
.btn-submit:hover,
.cta-large:hover {
    background: #1d4ed8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary,
.cta-secondary {
    background: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover,
.cta-secondary:hover {
    background: #2563eb;
    color: #fff;
}

.btn-select {
    background: #f1f5f9;
    color: #1e293b;
    width: 100%;
}

.btn-select:hover {
    background: #2563eb;
    color: #fff;
}

.cta-large {
    font-size: 18px;
    padding: 16px 40px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
}

.sticky-cta button {
    background: #2563eb;
    color: #fff;
    padding: 16px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta button:hover {
    background: #1d4ed8;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
}

/* Disclaimer */
.disclaimer-section {
    padding: 60px 20px;
    background: #fef3c7;
}

.disclaimer {
    font-size: 14px;
    color: #78350f;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 20px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-col h4 {
    font-size: 16px;
    color: #e2e8f0;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #cbd5e1;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-references {
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid #334155;
}

.footer-references h4 {
    font-size: 16px;
    color: #e2e8f0;
    margin-bottom: 15px;
}

.footer-references p {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.footer-references a {
    color: #60a5fa;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
}

.footer-bottom p {
    font-size: 14px;
    color: #94a3b8;
}

/* Link Arrow */
.link-arrow {
    color: #2563eb;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.link-arrow:after {
    content: "→";
}

.link-arrow:hover {
    gap: 8px;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-hero p {
    font-size: 20px;
    color: #dbeafe;
}

/* About Page Styles */
.about-intro {
    padding: 80px 20px;
    background: #fff;
}

.philosophy-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.philosophy-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #0f172a;
    font-weight: 700;
}

.philosophy-section p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

.expertise-section {
    padding: 80px 20px;
    background: #fff;
}

.expertise-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #0f172a;
    font-weight: 700;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.expertise-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 8px;
    border-top: 4px solid #2563eb;
}

.expertise-card h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 600;
}

.expertise-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.values-section {
    padding: 80px 20px;
    background: #eff6ff;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #0f172a;
    font-weight: 700;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    color: #2563eb;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* Services Page */
.services-intro {
    padding: 60px 20px;
    background: #fff;
}

.services-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0f172a;
    font-weight: 700;
}

.services-intro p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
}

.services-list {
    padding: 40px 20px 80px;
}

.service-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
    padding: 50px 0;
    border-bottom: 1px solid #e5e7eb;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-content {
    flex: 2;
    min-width: 300px;
}

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

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

.service-content h2 {
    font-size: 32px;
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-includes {
    margin-top: 30px;
}

.service-includes h3 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    color: #64748b;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #2563eb;
    font-weight: 700;
}

.price-box {
    background: #f8fafc;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    position: sticky;
    top: 100px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 20px;
}

.price-note {
    font-size: 14px;
    color: #64748b;
    margin-top: -10px;
    margin-bottom: 20px;
}

.process-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #0f172a;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 10px;
    font-weight: 600;
}

.step p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 20px;
    background: #fff;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #0f172a;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

/* Contact Page */
.contact-section {
    padding: 80px 20px;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info,
.contact-form-area {
    flex: 1;
    min-width: 300px;
}

.contact-info h2,
.contact-form-area h2 {
    font-size: 32px;
    color: #0f172a;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-form-area p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

.info-block .note {
    font-size: 14px;
    color: #64748b;
    font-style: italic;
    margin-top: 8px;
}

.location-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #0f172a;
    font-weight: 700;
}

.location-description p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 900px;
}

.faq-contact {
    padding: 80px 20px;
    background: #fff;
}

/* Thanks Page */
.thanks-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 800;
}

.thanks-content .lead {
    font-size: 22px;
    margin-bottom: 40px;
    color: #d1fae5;
}

.thanks-message {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.thanks-message p {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.step-card {
    flex: 1;
    min-width: 200px;
    background: rgba(255,255,255,0.15);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-card p {
    font-size: 15px;
    color: #d1fae5;
    line-height: 1.6;
}

.thanks-info {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.thanks-info p {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.additional-resources {
    padding: 80px 20px;
    background: #fff;
}

.additional-resources h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #0f172a;
    font-weight: 700;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.resource-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 8px;
    text-align: center;
}

.resource-card h3 {
    font-size: 22px;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 600;
}

.resource-card p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Legal Pages */
.legal-page {
    padding: 80px 20px;
    background: #fff;
}

.legal-page h1 {
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 10px;
    font-weight: 800;
}

.legal-page .last-updated {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    color: #1e293b;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-page h4 {
    font-size: 18px;
    color: #334155;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-page ul {
    margin: 15px 0 15px 25px;
}

.legal-page li {
    font-size: 16px;
    color: #475569;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-page a {
    color: #2563eb;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.cookie-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #0f172a;
}

.cookie-table td {
    font-size: 15px;
    color: #475569;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

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

    .hero-right {
        min-height: 300px;
    }

    .content-text h2,
    .benefits-text h2,
    .approach-text h2,
    .insight-text h2 {
        font-size: 28px;
    }

    .problem-section h2,
    .trust-section h2,
    .approach-section h2,
    .scientific-section h2,
    .cta-box h2 {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .thanks-content h1 {
        font-size: 36px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .price-box {
        position: static;
    }
}