/* CSS Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #1e3a5f;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f0f4f8;
    --bg-white: #ffffff;
    --accent-color: #3b82f6;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    z-index: 1000;
    transition: var(--transition);
}

.skip-link:focus {
    top: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition);
}

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

.nav-item > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 0.25rem;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    padding: 0.5rem 0;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    padding: 0.5rem;
    transition: var(--transition);
}

.search-btn:hover {
    color: var(--primary-color);
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e8ed 50%, #c1dbe3 100%);
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 850px;
    padding: 2rem 0;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    max-width: 750px;
}

.email-cta {
    position: absolute;
    right: 2rem;
    bottom: 8rem;
    background: var(--bg-white);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
    transition: var(--transition);
}

.email-cta:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.email-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.email-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.email-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
}

.email-content a:hover {
    text-decoration: underline;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.stat-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    line-height: 1;
}

.stat-label {
    color: var(--text-dark);
    font-size: 1rem;
    margin-top: 0.5rem;
    display: block;
}

.info-card {
    padding: 2rem 0;
}

.info-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.info-card h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.emergency-note {
    color: var(--text-dark);
    font-weight: 500;
}

/* Resources Section */
.resources-section {
    padding: 5rem 0;
    background: var(--bg-white);
    position: relative;
}

.resources-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, var(--bg-light) 0%, transparent 100%);
}

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

.resource-column {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.resource-column h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.resource-image {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    object-fit: cover;
    object-position: center;
}

.crisis-list, .involved-list {
    list-style: none;
}

.crisis-list li, .involved-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.crisis-list li:last-child, .involved-list li:last-child {
    border-bottom: none;
}

.phone-icon, .check-icon {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.crisis-list a, .involved-list a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.crisis-list a:hover, .involved-list a:hover {
    text-decoration: underline;
}

/* Additional Information Section */
.additional-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.additional-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 1px;
}

.additional-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.additional-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-white);
    margin-bottom: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.additional-list li:hover {
    box-shadow: var(--shadow-sm);
}

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

.additional-list a:hover {
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.testimonials-title {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-title span {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.testimonials-title .highlight {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-top: 0.5rem;
}

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

.testimonial-card {
    position: relative;
    padding: 2rem;
    padding-left: 2.5rem;
}

.testimonial-border {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
}

.avatar-1 {
    background-image: url('images/avatar-1.jpg');
}

.avatar-2 {
    background-image: url('images/avatar-2.jpg');
}

.avatar-3 {
    background-image: url('images/avatar-3.jpg');
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* Newsletter Section */
.newsletter-section {
    background: var(--bg-light);
    padding: 5rem 0;
    text-align: center;
}

.newsletter-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1f2e;
    color: white;
}

.footer-main {
    padding: 4rem 0;
}

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

.footer-about h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-about p {
    color: #9ca3af;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

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

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    background: #141824;
    padding: 1.25rem 0;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .search-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
        min-height: auto;
    }

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

    .hero-text {
        font-size: 1rem;
    }

    .email-cta {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 2rem;
        max-width: 100%;
    }

    .stat-number {
        font-size: 3rem;
    }

    .info-card h2 {
        font-size: 2rem;
    }

    .testimonials-title .highlight {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 1rem;
    }

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

    .container {
        padding: 0 1rem;
    }
}

/* ==================== */
/* Subpage Styles */
/* ==================== */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e8ed 50%, #c1dbe3 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    color: var(--text-dark);
}

/* Content Section */
.content-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

/* About Page Background */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    pointer-events: none;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.content-intro,
.diagnoses-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Content Grid (About Page) */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.content-main h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-main h2:first-child {
    margin-top: 0;
}

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

.experience-list,
.mission-list {
    list-style: none;
    margin: 1.5rem 0;
}

.experience-list li,
.mission-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.experience-list li::before,
.mission-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

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

.highlight-box p {
    margin: 0;
}

/* Sidebar */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quote-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.quote-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.quote-card blockquote {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.quote-card cite {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 500;
}

.cta-card {
    background: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.cta-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.cta-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

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

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2,
.contact-form-container h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin: 2rem 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-card h3 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

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

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

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

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

/* Diagnoses Page */
.diagnoses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.diagnosis-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-color);
}

.diagnosis-card h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.diagnosis-card h3 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.diagnosis-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.diagnosis-card ul {
    list-style: none;
    margin: 0.5rem 0;
}

.diagnosis-card ul li {
    padding: 0.25rem 0 0.25rem 1.25rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.diagnosis-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Resource Sections (Hospitals, Residential, etc.) */
.resource-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.resource-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.resource-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.resource-section > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 800px;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

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

.facility-card h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.facility-card ul {
    list-style: none;
}

.facility-card ul li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

.facility-card ul li:last-child {
    border-bottom: none;
}

.info-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.info-box h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.info-box ul {
    list-style: none;
}

.info-box ul li {
    padding: 0.35rem 0 0.35rem 1.25rem;
    position: relative;
    color: var(--text-dark);
}

.info-box ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Specialties Page */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.specialty-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.specialty-card h2 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.specialty-card h3 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

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

.specialty-card .note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

.specialty-card ul {
    list-style: none;
}

.specialty-card ul li {
    padding: 0.3rem 0 0.3rem 1.25rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.specialty-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Guardianship Page */
.guardianship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.guardianship-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

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

.guardianship-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.guardianship-card ul {
    list-style: none;
}

.guardianship-card ul li {
    padding: 0.35rem 0 0.35rem 1.25rem;
    position: relative;
    color: var(--text-dark);
}

.guardianship-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.resource-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.resource-link:hover {
    background: var(--primary-color);
    color: white;
}

/* FAQ Page */
.stats-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stats-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

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

.stats-card h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

.stats-card ul {
    list-style: none;
    text-align: left;
}

.stats-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.stats-card ul li:last-child {
    border-bottom: none;
}

.source-note {
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 3rem;
}

.source-note a {
    color: var(--primary-color);
}

.faq-section {
    margin-top: 3rem;
}

.faq-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Responsive Subpages */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    .diagnoses-grid,
    .specialties-grid,
    .stats-info-grid {
        grid-template-columns: 1fr;
    }

    .facility-grid,
    .guardianship-grid {
        grid-template-columns: 1fr;
    }
}
