<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fefefe;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    color: #5a6c7d;
}

/* Logo styling */
.nav-logo {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(43, 157, 153, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
}

.btn-primary {
    background: #2b9d99;
    color: white;
}

.btn-primary:hover {
    background: #258a86;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 157, 153, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2b9d99;
    border: 2px solid #2b9d99;
}

.btn-secondary:hover {
    background: #2b9d99;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-outline:hover {
    background: #2c3e50;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

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

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2b9d99;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

.btn-book-now {
    background: #2b9d99;
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-book-now:hover {
    background: #258a86;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(43, 157, 153, 0.3);
    color: white;
}

/* Hide mobile book now button on desktop */
.mobile-book-now {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0fdfc 0%, #e6fffa 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-trust-indicator {
    font-size: 0.9rem;
    color: #2b9d99;
    font-weight: 500;
    margin-top: 1rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.15);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(43, 157, 153, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2b9d99 0%, #258a86 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-description {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
}

.service-benefits li {
    color: #2b9d99;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service-cta {
    color: #2b9d99;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.service-cta:hover {
    color: #258a86;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdfc 0%, #e6fffa 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-title {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.about-description {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.credentials-list {
    margin: 2rem 0;
}

.credential-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.credential-item i {
    color: #2b9d99;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.credential-item span {
    color: #2c3e50;
    line-height: 1.4;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.15);
}

/* Accessibility Features Section */
.accessibility-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.accessibility-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.accessibility-intro {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.accessibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.accessibility-feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accessibility-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.accessibility-feature .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a9d95 0%, #2b9d99 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.accessibility-feature .feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.accessibility-feature h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.accessibility-feature p {
    color: #5a6c7d;
    line-height: 1.6;
}

.accessibility-cta {
    text-align: center;
}

.accessibility-note {
    color: #5a6c7d;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .accessibility-features {
        padding: 60px 0;
    }
    
    .accessibility-title {
        font-size: 2rem;
    }
    
    .accessibility-intro {
        font-size: 1.1rem;
    }
    
    .accessibility-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .accessibility-feature {
        padding: 1.5rem;
    }
}

/* Career Mapping Section */
.career-mapping {
    padding: 80px 0;
    background: white;
}

.career-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.career-intro {
    text-align: center;
    color: #5a6c7d;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.career-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.career-feature {
    padding: 2rem;
    background: #f0fdfc;
    border-radius: 12px;
    border-left: 4px solid #2b9d99;
}

.career-feature.highlighted {
    background: linear-gradient(135deg, #f0fdfc 0%, #e6fffa 100%);
    border-left: 4px solid #2b9d99;
}

.career-feature.insurance-highlight {
    background: linear-gradient(135deg, #f0fdfc 0%, #e6fffa 100%);
    border-left: 4px solid #2b9d99;
}

.career-feature h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.career-feature ul {
    list-style: none;
    padding: 0;
}

.career-feature ul li {
    color: #2b9d99;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.career-feature p {
    color: #5a6c7d;
    margin: 0;
    line-height: 1.7;
}

.career-cta-section {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(43, 157, 153, 0.1);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.career-cta-note {
    color: #5a6c7d;
    font-style: italic;
    margin: 0;
}

/* Healing Section */
.healing {
    padding: 80px 0;
    background: linear-gradient(135deg, #2b9d99 0%, #258a86 100%);
    color: white;
}

.healing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.healing-title {
    color: white;
    margin-bottom: 2rem;
}

.healing-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.healing-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f0fdfc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-title {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    line-height: 1.3;
}

.contact-description {
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(43, 157, 153, 0.1);
    border: 1px solid rgba(43, 157, 153, 0.2);
    border-left: 4px solid #2b9d99;
}

.trust-item i {
    font-size: 1.2rem;
    color: #2b9d99;
    flex-shrink: 0;
}

.trust-item span {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Practice Information */
.practice-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(44, 62, 80, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(43, 157, 153, 0.15);
}

.info-item i {
    font-size: 1.5rem;
    color: #2b9d99;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.info-item div {
    flex: 1;
}

.info-item strong {
    color: #2c3e50;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: #5a6c7d;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
    border: 1px solid #e2e8f0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2b9d99;
    box-shadow: 0 0 0 3px rgba(43, 157, 153, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
    font-style: italic;
}

.form-group select option:first-child {
    color: #94a3b8;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #2b9d99;
}

/* Enhanced Business Information */
.footer-business-info {
    max-width: 350px;
}

.business-details {
    margin: 1.5rem 0;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.detail-item i {
    color: #2b9d99;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.detail-item span {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.4;
}

.detail-item a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.detail-item a:hover {
    color: #2b9d99;
}

/* Credentials Footer */
.credentials-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.credential-badge {
    background: rgba(43, 157, 153, 0.2);
    color: #2b9d99;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(43, 157, 153, 0.3);
}

/* Footer CTA */
.footer-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(43, 157, 153, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(43, 157, 153, 0.2);
    text-align: center;
}

.footer-cta p {
    color: white;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-cta .btn {
    background: transparent;
    color: #2b9d99;
    border: 2px solid #2b9d99;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.footer-cta .btn:hover {
    background: #2b9d99;
    color: white;
}

/* Enhanced Footer Bottom */
.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

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

.copyright p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.9rem;
}

.license-info {
    color: #2b9d99 !important;
    font-weight: 500;
    font-size: 0.85rem !important;
}

/* Legal Pages Styling */
.legal-content {
    padding: 120px 0 80px;
    background: white;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-updated {
    color: #2b9d99;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.legal-intro {
    color: #5a6c7d;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

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

.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f0fdfc;
    border-radius: 12px;
    border-left: 4px solid #2b9d99;
}

.legal-section h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #2b9d99;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-section p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

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

.legal-section strong {
    color: #2c3e50;
}

.contact-box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #2b9d99;
    margin: 1rem 0;
}

.contact-box a {
    color: #2b9d99;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

.legal-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f0fdfc;
    border-radius: 12px;
    border: 1px solid rgba(43, 157, 153, 0.2);
}

.legal-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .legal-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-actions .btn {
        width: 200px;
    }
}

/* Footer Social Links */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(43, 157, 153, 0.2);
    border-radius: 50%;
    color: #2b9d99;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(43, 157, 153, 0.3);
}

.social-link:hover {
    background: #2b9d99;
    color: white;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1rem;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #2b9d99;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-actions {
        display: none;
    }

    .mobile-book-now {
        display: block;
    }

    .nav-toggle {
        display: flex;
    }

    .btn-book-now-mobile {
        background: #2b9d99;
        color: white;
        padding: 12px 24px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .btn-book-now-mobile:hover {
        background: #258a86;
        color: white;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .healing-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .healing-content .healing-text {
        order: 1;
    }
    
    .healing-content .healing-image {
        order: 2;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        padding: 1.25rem;
    }
    
    .info-item i {
        font-size: 1.3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-business-info {
        max-width: none;
    }
    
    .business-details {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .detail-item {
        justify-content: center;
        text-align: left;
    }
    
    .credentials-footer {
        justify-content: center;
    }
    
    .footer-cta {
        margin-top: 1.5rem;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-social {
        order: -1;
    }
    
    .footer-links {
        justify-content: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .contact-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .contact-description {
        font-size: 1rem;
    }
    
    .trust-indicators {
        gap: 0.75rem;
    }
    
    .trust-item {
        padding: 0.75rem;
    }
    
    .trust-item span {
        font-size: 0.85rem;
    }
    
    .info-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .info-item strong {
        font-size: 0.9rem;
    }
    
    .info-item p {
        font-size: 0.85rem;
    }
    
    /* Footer Mobile Styles */
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .detail-item {
        gap: 0.5rem;
        padding: 0.25rem 0;
    }
    
    .detail-item i {
        font-size: 0.9rem;
    }
    
    .detail-item span,
    .detail-item a {
        font-size: 0.85rem;
    }
    
    .credentials-footer {
        gap: 0.25rem;
    }
    
    .credential-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .footer-cta {
        padding: 1rem;
    }
    
    .footer-cta .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link i {
        font-size: 0.9rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .copyright p {
        font-size: 0.8rem;
    }
    
    .license-info {
        font-size: 0.75rem !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.service-card,
.about-content,
.contact-content {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success/Error states for form */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #28a745;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

.success-message {
    color: #28a745;
    font-size: 14px;
    margin-top: 5px;
}

/* FAQ Page Styles */
.faq-content {
    padding: 120px 0 80px;
    background: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faq-intro {
    color: #5a6c7d;
    font-size: 1.1rem;
    line-height: 1.7;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.faq-item {
    background: #f0fdfc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2b9d99;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: #f0fdfc;
    border-radius: 12px;
    border: 1px solid rgba(43, 157, 153, 0.2);
}

.faq-cta h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.faq-cta p {
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* 404 Error Page Styles */
.error-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0fdfc 0%, #e6fffa 100%);
    text-align: center;
}

.error-content {
    max-width: 800px;
    margin: 0 auto;
}

.error-icon {
    font-size: 4rem;
    color: #2b9d99;
    margin-bottom: 2rem;
}

.error-title {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.error-description {
    color: #5a6c7d;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.suggestion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.suggestion-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
    border: 1px solid #e2e8f0;
}

.suggestion-card i {
    font-size: 2rem;
    color: #2b9d99;
    margin-bottom: 1rem;
}

.suggestion-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.suggestion-card p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: #2b9d99;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #258a86;
    text-decoration: underline;
}

.emergency-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.emergency-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.emergency-content i {
    color: #856404;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.emergency-content strong {
    color: #856404;
    display: block;
    margin-bottom: 0.5rem;
}

.emergency-content p {
    color: #856404;
    margin: 0;
    line-height: 1.5;
}

.emergency-content a {
    color: #6c5a00;
    font-weight: 600;
}

/* About Therapy Page Styles */
.therapy-guide {
    padding: 120px 0 80px;
    background: white;
}

.guide-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guide-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.guide-intro {
    color: #5a6c7d;
    font-size: 1.1rem;
    line-height: 1.7;
}

.guide-content {
    max-width: 1000px;
    margin: 0 auto;
}

.guide-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: #f0fdfc;
    border-radius: 12px;
    border-left: 4px solid #2b9d99;
}

.guide-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #2b9d99;
    padding-bottom: 0.5rem;
}

.guide-section p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.highlight-box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #2b9d99;
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-box i {
    color: #2b9d99;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.help-category {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.help-category h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.help-category ul {
    color: #5a6c7d;
    line-height: 1.6;
    padding-left: 1.5rem;
}

.help-category ul li {
    margin-bottom: 0.5rem;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.concern-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.concern-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.concern-item p {
    color: #5a6c7d;
    margin: 0;
    line-height: 1.6;
}

.guide-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: #f0fdfc;
    border-radius: 12px;
    border: 1px solid rgba(43, 157, 153, 0.2);
    margin-top: 3rem;
}

.guide-cta h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.guide-cta p {
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile responsiveness for new pages */
@media (max-width: 768px) {
    .faq-content,
    .error-page,
    .therapy-guide {
        padding: 100px 0 60px;
    }
    
    .faq-header h1,
    .error-title,
    .guide-header h1 {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .suggestion-grid,
    .concerns-grid,
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 200px;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
    }
    
    .guide-section {
        padding: 1.5rem;
    }
}

/* Article Page Styles */
.article-page {
    padding: 120px 0 80px;
    background: white;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-category {
    background: #2b9d99;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-meta time {
    color: #5a6c7d;
    font-size: 0.9rem;
}

.read-time {
    color: #5a6c7d;
    font-size: 0.9rem;
}

.article-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-intro {
    color: #5a6c7d;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.author-info {
    color: #2b9d99;
    font-weight: 500;
    font-size: 0.95rem;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem 0;
    border-bottom: 2px solid #2b9d99;
    padding-bottom: 0.5rem;
}

.article-content h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
}

.article-content h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
}

.article-content p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.article-content li {
    color: #5a6c7d;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.article-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.article-footer {
    max-width: 800px;
    margin: 4rem auto 0;
    border-top: 2px solid #f0fdfc;
    padding-top: 3rem;
}

.article-cta {
    text-align: center;
    padding: 2.5rem;
    background: #f0fdfc;
    border-radius: 12px;
    border: 1px solid rgba(43, 157, 153, 0.2);
    margin-bottom: 2rem;
}

.article-cta h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.article-cta p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.nav-previous,
.nav-next {
    color: #2b9d99;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 2px solid #2b9d99;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
    background: #2b9d99;
    color: white;
}

/* Accessibility Page Styles */
.accessibility-content {
    padding: 120px 0 80px;
    background: white;
}

.accessibility-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.accessibility-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.accessibility-intro {
    color: #5a6c7d;
    font-size: 1.1rem;
    line-height: 1.7;
}

.accessibility-body {
    max-width: 1000px;
    margin: 0 auto;
}

.accessibility-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f0fdfc;
    border-radius: 12px;
    border-left: 4px solid #2b9d99;
}

.accessibility-section h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #2b9d99;
    padding-bottom: 0.5rem;
}

.accessibility-section h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.accessibility-section p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.accessibility-section ul {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.accessibility-section ul li {
    margin-bottom: 0.75rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.feature-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-item ul {
    color: #5a6c7d;
    line-height: 1.6;
    padding-left: 1.5rem;
    margin: 0;
}

.feature-item ul li {
    margin-bottom: 0.5rem;
}

.service-accessibility {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.service-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-item ul {
    color: #5a6c7d;
    line-height: 1.6;
    padding-left: 1.5rem;
    margin: 0;
}

.service-item ul li {
    margin-bottom: 0.5rem;
}

.contact-accessibility {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.contact-method h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-method p {
    color: #5a6c7d;
    margin: 0;
    line-height: 1.6;
}

.contact-method a {
    color: #2b9d99;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.accessibility-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: #f0fdfc;
    border-radius: 12px;
    border: 1px solid rgba(43, 157, 153, 0.2);
    margin-top: 3rem;
}

.accessibility-cta h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.accessibility-cta p {
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sitemap Page Styles */
.sitemap-content {
    padding: 120px 0 80px;
    background: white;
}

.sitemap-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sitemap-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sitemap-intro {
    color: #5a6c7d;
    font-size: 1.1rem;
    line-height: 1.7;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.sitemap-section {
    background: #f0fdfc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2b9d99;
}

.sitemap-section h2 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sitemap-section h2 i {
    color: #2b9d99;
    font-size: 1.2rem;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list &gt; li {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

.sitemap-list &gt; li &gt; a {
    color: #2b9d99;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sitemap-list &gt; li &gt; a:hover {
    color: #258a86;
    text-decoration: underline;
}

.sub-pages {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.sub-pages li {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
    font-weight: normal;
    font-size: 0.95rem;
}

.sub-pages li a {
    color: #5a6c7d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sub-pages li a:hover {
    color: #2b9d99;
    text-decoration: underline;
}

.sitemap-search {
    text-align: center;
    padding: 3rem 2rem;
    background: #f0fdfc;
    border-radius: 12px;
    border: 1px solid rgba(43, 157, 153, 0.2);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sitemap-search h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.sitemap-search p {
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.search-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sitemap-footer {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
}

.sitemap-footer p {
    color: #5a6c7d;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.sitemap-footer p:last-child {
    margin-bottom: 0;
}

/* Thank You Page Styles */
.thank-you-content {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0fdfc 0%, #e6fffa 100%);
}

.thank-you-message {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.success-icon i {
    font-size: 4rem;
    color: #2b9d99;
    background: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(43, 157, 153, 0.2);
}

.thank-you-message h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.main-message {
    color: #5a6c7d;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.response-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.info-card i {
    font-size: 2rem;
    color: #2b9d99;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-card p {
    color: #5a6c7d;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.what-happens-next {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
    margin-bottom: 3rem;
    text-align: left;
}

.what-happens-next h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

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

.step-number {
    background: #2b9d99;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #5a6c7d;
    margin: 0;
    line-height: 1.6;
}

.immediate-actions {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
    margin-bottom: 3rem;
}

.immediate-actions h3 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.urgent-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    color: #856404;
    text-align: center;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.return-home {
    margin-top: 2rem;
}

.return-home .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 30px;
    font-size: 1rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Typography Mobile Adjustments */
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-book-now {
        display: block;
        margin-top: 1rem;
    }
    
    .btn-book-now-mobile {
        background: #2b9d99;
        color: white;
        padding: 12px 24px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
    }
    
    .hero-trust-indicator {
        font-size: 0.8rem;
        text-align: center;
        line-height: 1.5;
    }
    
    /* Services Section Mobile */
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    /* About Section Mobile */
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    /* Accessibility Features Mobile */
    .accessibility-features {
        padding: 60px 0;
    }
    
    .accessibility-title {
        font-size: 2rem;
    }
    
    .accessibility-intro {
        font-size: 1.1rem;
    }
    
    .accessibility-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .accessibility-feature {
        padding: 1.5rem;
    }
    
    /* Career Mapping Mobile */
    .career-mapping {
        padding: 60px 0;
    }
    
    .career-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .career-feature {
        padding: 1.5rem;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        order: 1;
    }
    
    .contact-info {
        order: 2;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .practice-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hero-trust-indicator {
        font-size: 0.75rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .accessibility-feature {
        padding: 1.25rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Responsive styles for thank you page */
@media (max-width: 768px) {
    .thank-you-content {
        padding: 100px 0 60px;
    }
    
    .thank-you-message h1 {
        font-size: 2rem;
    }
    
    .success-icon i {
        font-size: 3rem;
        width: 100px;
        height: 100px;
    }
    
    .response-info {
        grid-template-columns: 1fr;
    }
    
    .what-happens-next {
        padding: 2rem 1.5rem;
    }
    
    .steps {
        gap: 1.5rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        width: 250px;
    }
}

/* Responsive styles for accessibility and sitemap pages */
@media (max-width: 768px) {
    .accessibility-content,
    .sitemap-content {
        padding: 100px 0 60px;
    }
    
    .accessibility-header h1,
    .sitemap-header h1 {
        font-size: 2rem;
    }
    
    .accessibility-section,
    .sitemap-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .features-grid,
    .service-accessibility,
    .contact-accessibility {
        grid-template-columns: 1fr;
    }
    
    .sitemap-grid {
        grid-template-columns: 1fr;
    }
    
    .search-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .search-actions .btn {
        width: 200px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 200px;
    }
}</pre></body></html>