:root {
    /* Brand Colors - Earth Tones */
    --color-moss-green: #908F54;
    --color-timberwolf: #D4CFC9;
    --color-reseda-green: #8C7F55;
    --color-drab-brown: #524B24;
    --color-khaki: #C4B69A;
    
    /* Semantic Color Assignments */
    --primary-color: var(--color-moss-green);
    --primary-color-rgb: 144, 143, 84; /* RGB values for moss green */
    --primary-dark: #7a7945; /* Darker moss green for hover states */
    --primary-dark-rgb: 122, 121, 69; /* RGB values for dark moss green */
    --secondary-color: var(--color-timberwolf);
    --accent-color: var(--color-reseda-green);
    --text-dark: var(--color-drab-brown);
    --text-light: #6b6453; /* Slightly lighter than drab brown */
    --background-light: #FAF9F7; /* Very light warm white */
    --background-white: #FFFFFF;
    --border-color: var(--color-khaki);
    
    /* Shadows using drab brown */
    --shadow-sm: 0 2px 8px rgba(82, 75, 36, 0.08);
    --shadow-md: 0 4px 16px rgba(82, 75, 36, 0.12);
    --shadow-lg: 0 8px 32px rgba(82, 75, 36, 0.16);
    
    /* Layout */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --max-width: 1200px;
    --transition: all 0.3s ease;
    
    /* Spacing System */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 2rem;     /* 32px */
    --space-xl: 3rem;     /* 48px */
    --space-2xl: 4rem;    /* 64px */
    --space-3xl: 6rem;    /* 96px */
}

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

html {
    scroll-behavior: smooth;
    position: relative;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
    font-weight: 400;
    padding-top: 80px !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.01em;
}

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

/* Navigation */
.navbar {
    background: var(--background-white);
    box-shadow: var(--shadow-sm);
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    transition: var(--transition);
}

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

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

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

.nav-link:hover::after {
    width: 100%;
}

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

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

/* Hero Section */
.hero {
    min-height: 600px;
    background: 
        linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.85), rgba(var(--primary-dark-rgb), 0.85)),
        url('../images/hero1-optimized.jpg') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* WebP support with fallback */
.webp .hero {
    background: 
        linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.85), rgba(var(--primary-dark-rgb), 0.85)),
        url('../images/hero1.webp') center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    position: relative;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Hero section button overrides for visibility on background */
.hero .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero .btn-secondary:hover {
    background: white;
    color: var(--color-moss-green);
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-family: inherit;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--color-moss-green);
    color: white;
    border: none;
}

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

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

.btn-secondary:hover {
    background: var(--color-moss-green);
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
}

/* About Section */
.about {
    background: var(--background-white);
}

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

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.values {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.value-icon {
    font-size: 1.5rem;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--border-radius);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-style: italic;
}

/* About Images */
.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.about-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.about-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.about-img-1 {
    grid-column: 1;
}

.about-img-2 {
    grid-column: 2;
}

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

.service-card {
    background: var(--background-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

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

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

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Approach Section */
.approach {
    background: var(--background-white);
}

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

.approach-card {
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    background: var(--background-light);
    border-radius: var(--border-radius);
}

.approach-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

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

/* Testimonial Section */
.testimonial {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

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

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 500;
    opacity: 0.9;
}

/* Newsletter Section */
.newsletter {
    background: var(--color-timberwolf);
    text-align: center;
    padding: var(--space-3xl) 0;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
    font-size: 2.5rem;
}

.newsletter-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.newsletter-subtitle {
    color: var(--text-light);
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.newsletter-form {
    max-width: 450px !important;
    margin: 0 auto var(--space-md);
    width: 100% !important;
}

.newsletter-form-row {
    display: flex !important;
    gap: 12px;
    margin-bottom: 16px;
    width: 100% !important;
}

.newsletter-form-row input {
    flex: 1 !important;
    width: auto !important;
    max-width: none !important;
}

.newsletter-input {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 14px 20px;
    border: 2px solid var(--color-khaki);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: var(--transition);
    margin-bottom: 16px;
    box-sizing: border-box;
}

.newsletter-select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23524B24" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 50px;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(144, 143, 84, 0.1);
}

.newsletter-btn {
    white-space: nowrap;
}

.newsletter-privacy {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* Contact Section */
.contact {
    background: var(--background-white);
}

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

.contact-info h3,
.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-detail {
    color: var(--text-light);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

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

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

.form-group textarea {
    resize: vertical;
}

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

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

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--background-white);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form-row {
        flex-direction: column;
    }

    .newsletter-input,
    .newsletter-btn {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .values {
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

    .hero {
        min-height: 500px;
    }

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

/* Tab Navigation Styles */
.tab-navigation {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--color-khaki);
}

.tab-button {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-drab-brown);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.tab-button:hover {
    color: var(--color-moss-green);
}

.tab-button.active {
    color: var(--color-moss-green);
    font-weight: 600;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-moss-green);
}

/* Tab Content */
.tab-content {
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

/* Specialty List Grid */
.specialty-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    padding: 1rem 0;
}

.specialty-item {
    padding: 0.75rem;
    background: var(--color-timberwolf);
    border-left: 3px solid var(--color-moss-green);
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    color: var(--color-drab-brown);
    transition: all 0.3s ease;
}

.specialty-item:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Modal System */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(82, 75, 36, 0.5);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-container {
    background: var(--background-white);
    border-radius: var(--border-radius-lg);
    max-width: 800px;
    max-height: 80vh;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
    opacity: 0.5;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.modal-close:hover {
    opacity: 1;
}

.modal-content {
    padding: 2.5rem;
    overflow-y: auto;
    max-height: 80vh;
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

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

.modal-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.modal-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.modal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.modal-content .highlight-box {
    background: var(--color-timberwolf);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

/* Footer Legal Links */
.footer-legal {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.7;
}

.footer-legal a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-legal .separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.donation-link {
    opacity: 0.6;
}

.donation-link:hover {
    opacity: 0.9;
}

/* Form Checkbox and Disclaimer */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.checkbox-label span {
    flex: 1;
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.form-disclaimer {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.form-disclaimer a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

/* Responsive adjustments for modals */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 90vh;
        margin: 1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-legal .separator {
        display: none;
    }
    
    .footer-legal a {
        padding: 0.25rem 0.5rem;
    }
    
    /* Fix hero section on mobile */
    .hero {
        padding-top: 70px; /* Account for fixed navbar */
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Service cards mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    /* Contact form mobile */
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group select,
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Responsive adjustments for tabs */
@media (max-width: 768px) {
    .tab-navigation {
        justify-content: center;
    }
    
    .tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .specialty-list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .specialty-list {
        grid-template-columns: 1fr;
    }
    
    .tab-button {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}
/* Language Switcher Styles */
.language-switcher-wrapper {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.language-switcher {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: "Source Sans Pro", sans-serif;
}

.language-switcher:hover {
    background-color: var(--primary-color);
    color: white;
}

.language-switcher:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(144, 143, 84, 0.2);
}

.language-switcher option {
    background-color: white;
    color: var(--text-dark);
}

/* Crisis Help Box */
.crisis-help-box {
    margin-top: 2rem;
    border: 2px solid var(--color-khaki);
    border-radius: var(--border-radius);
    background: rgba(196, 182, 154, 0.1);
    overflow: hidden;
}

.crisis-help-header {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    background: var(--color-khaki);
    transition: background-color 0.3s ease;
}

.crisis-help-header:hover {
    background: rgba(196, 182, 154, 0.9);
}

.crisis-help-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.crisis-help-subtitle {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-left: auto;
    margin-right: 1rem;
}

.crisis-arrow {
    transition: transform 0.3s ease;
    color: var(--text-dark);
    flex-shrink: 0;
}

.crisis-help-content {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid rgba(82, 75, 36, 0.1);
}

.crisis-help-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.crisis-help-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.crisis-help-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.crisis-help-content li {
    padding: 0.5rem 0;
    line-height: 1.6;
    border-bottom: 1px solid rgba(82, 75, 36, 0.05);
}

.crisis-help-content li:last-child {
    border-bottom: none;
}

.resources-note {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Mobile Language Switcher */
@media (max-width: 768px) {
    .language-switcher-wrapper {
        margin-left: 0;
        margin-top: 20px;
        padding: 20px;
        border-top: 1px solid rgba(144, 143, 84, 0.1);
    }
    
    .language-switcher {
        width: 100%;
        padding: 12px 16px;
    }
}
