:root {
    --primary-teal: #287a7d;
    --primary-teal-dark: #1e5d5f;
    --primary-coral: #eb7d68;
    --primary-coral-dark: #d66652;
    --text-dark: #1a1a1a;
    --text-gray: #6b7280;
    --bg-light: #f8fafb;
    --bg-white: #ffffff;
    --border-light: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --max-width: 1200px;
}

/* Performance Optimizations */
* {
    box-sizing: border-box;
}

/* Accessibility improvements */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--text-dark);
    color: white;
    padding: 8px;
    z-index: 10000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Enhanced focus indicators */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-coral);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Remove default outline and add custom focus */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--primary-coral);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html {
    scroll-behavior: smooth;
}

/* Optimize images for performance */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reduce layout shifts */
.logo img {
    width: 200px;
    height: 45px;
    object-fit: contain;
}

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

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 45px;
    width: auto;
}

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

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

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

.nav-links .btn-primary {
    color: white;
}

.nav-links .btn-primary:hover {
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: 
        linear-gradient(135deg, rgba(240, 249, 255, 0.9) 0%, rgba(254, 243, 242, 0.9) 100%),
        url('/assets/doctor-background.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-title .highlight {
    color: var(--primary-coral);
}

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

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-teal);
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.price-tag {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-teal);
}

.hero-image {
    position: relative;
}

.hero-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    transition: transform 0.3s;
}

.hero-card:hover {
    transform: rotate(-1deg) scale(1.02);
}

.specialist-card {
    transform: rotate(2deg);
}

.specialist-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.specialist-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-coral));
    border-radius: 50%;
}

.specialist-header h4 {
    margin: 0;
    color: var(--text-dark);
}

.specialist-header p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.specialist-expertise {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: var(--bg-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--primary-teal);
}

.specialist-bio {
    color: var(--text-gray);
    line-height: 1.6;
}

.disclaimer-text {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    font-style: italic;
}

/* Trust & Compliance Bar */
.trust-bar {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.compliance-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.compliance-item {
    display: flex;
    justify-content: center;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.compliance-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.compliance-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.compliance-badge.hipaa .compliance-icon {
    color: #0066cc;
}

.compliance-badge.gdpr .compliance-icon {
    color: #003399;
}

.compliance-badge.secure .compliance-icon {
    color: var(--primary-teal);
}

.compliance-badge.deletion .compliance-icon {
    color: #dc2626;
}

.compliance-text {
    text-align: left;
}

.compliance-text strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.compliance-text span {
    color: var(--text-gray);
    font-size: 0.875rem;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.problem-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

.steps::before {
    display: none; /* Remove the continuous line */
}

.step {
    position: relative;
    z-index: 1;
}

/* Arrow between step 1 and 2 */
.step:nth-child(1)::after {
    content: '⟶';
    position: absolute;
    top: -30px;
    right: -35%;
    font-size: 5rem;
    font-weight: 900;
    color: #000000;
    z-index: 1;
    transform: translateX(-50%) scaleX(1.5);
    line-height: 1;
}

/* Arrow between step 2 and 3 */
.step:nth-child(2)::after {
    content: '⟶';
    position: absolute;
    top: -30px;
    right: -35%;
    font-size: 5rem;
    font-weight: 900;
    color: #000000;
    z-index: 1;
    transform: translateX(-50%) scaleX(1.5);
    line-height: 1;
}

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

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.step-content p {
    color: var(--text-gray);
    text-align: center;
    line-height: 1.6;
}

/* What You Get */
.what-you-get {
    padding: 5rem 0;
    background: var(--bg-light);
}

.deliverables {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.deliverable {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.deliverable-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.deliverable p {
    color: var(--text-gray);
    line-height: 1.6;
}

.guarantee-box {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guarantee-box p {
    font-size: 1.125rem;
    line-height: 1.6;
}

.data-deletion-box {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 2px solid var(--primary-coral);
    color: var(--text-dark);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 0;
}

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

.data-deletion-box p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.data-deletion-box strong {
    color: #dc2626;
    font-weight: 700;
}

/* Principles Section */
.principles-section {
    padding: 5rem 0;
    background: white;
}

.principles-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.principle-card {
    text-align: center;
    padding: 1.5rem;
}

.principle-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.principle-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.ethics-disclaimer {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-coral);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ethics-disclaimer p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.ethics-disclaimer strong {
    color: var(--primary-coral);
}


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

.pricing-comparison {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
}

.comparison-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary-coral);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-coral);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.price-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

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

.comparison-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
}

.comparison-list li::before {
    content: '✓';
    color: var(--primary-teal);
    font-weight: bold;
    margin-right: 0.75rem;
}

.comparison-list li.negative::before {
    content: '✗';
    color: #ef4444;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.cta-disclaimer {
    font-size: 0.875rem;
    opacity: 0.7;
    font-style: italic;
    margin-top: 0.5rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    width: 150px;
    height: 35px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.tagline {
    font-style: italic;
    margin-bottom: 0.5rem;
    color: var(--primary-coral);
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

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

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
}

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

/* About Page Specific Styles */
.about-page {
    background: 
        linear-gradient(135deg, rgba(248, 250, 251, 0.85) 0%, rgba(255, 255, 255, 0.85) 100%),
        url('/assets/emergency-room-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    padding: 2rem 0 5rem;
}

.about-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.about-header,
.about-content {
    position: relative;
    z-index: 1;
}

.ai-insight {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ai-insight h4 {
    color: var(--primary);
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.ai-insight p {
    margin: 0;
    font-style: italic;
    color: #333;
}

.insight-box {
    background: linear-gradient(135deg, #fff3e0 0%, #fce4ec 100%);
    border: 1px solid #ffb74d;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(255, 183, 77, 0.15);
}

.insight-box::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 20px;
    background: white;
    padding: 0 8px;
    font-size: 1.5rem;
}

.insight-box h4 {
    color: #e65100;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.insight-box p {
    margin: 0;
    font-style: italic;
    color: #424242;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .compliance-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .compliance-badge {
        width: 100%;
        padding: 0.75rem 1rem;
    }
    
    .compliance-icon {
        width: 40px;
        height: 40px;
    }
    
    .compliance-text strong {
        font-size: 0.9rem;
    }
    
    .compliance-text span {
        font-size: 0.75rem;
    }
    
    .problem-grid,
    .steps,
    .deliverables,
    .pricing-comparison,
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .steps::before {
        display: none;
    }
    
    .comparison-card.featured {
        transform: scale(1);
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Legal Pages */
.legal-page {
    padding: 2rem 0 5rem;
    background: var(--bg-light);
    min-height: 80vh;
}

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

.effective-date {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--primary-teal);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 0.5rem;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

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

.legal-content p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.highlight-box {
    background: linear-gradient(135deg, #e0f2f1, #e8f5e8);
    border: 2px solid var(--primary-teal);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.highlight-box h3 {
    color: var(--primary-teal);
    margin-top: 0;
}

.disclaimer-box {
    background: linear-gradient(135deg, #fff3e0, #ffeaa7);
    border: 2px solid #ff9800;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.disclaimer-box p {
    margin: 0;
    color: var(--text-dark);
}

.disclaimer-box strong {
    color: #e65100;
}

.ethics-disclaimer {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    border: 2px solid var(--primary-coral);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.ethics-disclaimer h3 {
    color: var(--primary-coral);
    margin-top: 0;
}

.compliance-badge-section {
    text-align: center;
    margin: 2rem 0;
}

.hipaa-badge {
    display: inline-block;
    background: white;
    border: 3px solid #0066cc;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hipaa-badge h3 {
    color: #0066cc;
    margin: 0;
    font-size: 1.5rem;
}

.hipaa-badge p {
    color: var(--text-gray);
    margin: 0.5rem 0 0;
}

.compliance-commitment {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.compliance-commitment h3 {
    color: white;
    margin-top: 0;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .hipaa-badge {
        padding: 1.5rem;
    }
}

/* About Page Styles */

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

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

.about-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

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

.founder-story {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
}

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

.story-section:last-child {
    margin-bottom: 0;
}

.story-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.story-section.crisis {
    border-left: 4px solid #ef4444;
    padding-left: 2rem;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
}

.story-section.search {
    border-left: 4px solid #3b82f6;
    padding-left: 2rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.story-section.outcome {
    border-left: 4px solid #10b981;
    padding-left: 2rem;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.story-section.mission {
    border-left: 4px solid var(--primary-coral);
    padding-left: 2rem;
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-coral);
}

.story-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.story-section h2 {
    color: var(--primary-teal);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.story-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.story-section h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.story-section p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.story-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.story-list li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.key-quote {
    text-align: center;
    margin: 2rem 0;
}

.key-quote blockquote {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-teal);
    font-style: italic;
    position: relative;
    padding: 1rem 2rem;
}

.key-quote blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-coral);
    position: absolute;
    left: 0;
    top: -0.5rem;
}

.key-quote blockquote::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-coral);
    position: absolute;
    right: 0;
    bottom: -0.5rem;
}

.principles-section {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
}

.principles-section h2 {
    color: var(--primary-teal);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.principle {
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--bg-light);
}

.principle h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.principle p {
    color: var(--text-gray);
    line-height: 1.6;
}

.approach-section {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
}

.approach-section h2 {
    color: var(--primary-teal);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.approach-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.loop-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.loop-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

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

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

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.commitment-section {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    color: white;
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.commitment-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.commitment-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: white;
}

.ethics-reminder {
    margin-bottom: 2rem;
}

.ethics-box {
    background: linear-gradient(135deg, #fff3e0, #ffeaa7);
    border: 2px solid #ff9800;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.ethics-box h3 {
    color: #e65100;
    margin-bottom: 1rem;
}

.ethics-box p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Responsive About Page */
@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2.5rem;
    }
    
    .founder-story,
    .principles-section,
    .approach-section {
        padding: 2rem 1.5rem;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .loop-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .key-quote blockquote {
        font-size: 1.5rem;
        padding: 1rem;
    }
    
    .commitment-section {
        padding: 2rem 1.5rem;
    }
}/* Updated Mo  1 Sep 2025 18:28:09 -03 */
