/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px; /* Offset for fixed header */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Prevent horizontal scroll on mobile */
    overflow-x: hidden;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
    max-width: 300px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    /* Better touch targets on mobile */
    min-height: 44px;
    display: flex;
    align-items: center;
    touch-action: manipulation;
}

.nav-link:hover, .nav-link.active {
    background: #001D4B;
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #001D4B;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #001D4B 0%, #003366 100%);
    color: #fff;
    padding: 4rem 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.hero-placeholder i {
    font-size: 4rem;
    opacity: 0.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    /* Improve touch targets for mobile */
    min-height: 44px;
    line-height: 1.4;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.btn-primary {
    background: #E98226;
    color: #fff;
    border-color: #E98226;
}

.btn-primary:hover {
    background: #d4741f;
    border-color: #d4741f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 130, 38, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #001D4B;
}

.btn-outline {
    background: transparent;
    color: #001D4B;
    border-color: #001D4B;
}

.btn-outline:hover {
    background: #001D4B;
    color: #fff;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #001D4B;
    margin-bottom: 3rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #001D4B, #003366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #001D4B;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* About Preview Section */
.about-preview {
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #001D4B;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #64748b;
    font-weight: 500;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #001D4B 0%, #003366 100%);
    color: #fff;
    padding: 4rem 0;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #001D4B 0%, #003366 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Detailed */
.about-detailed {
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.about-main h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #001D4B;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-main h2:first-child {
    margin-top: 0;
}

.about-main p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.services-overview {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #001D4B;
}

.service-item h3 {
    color: #001D4B;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-item i {
    font-size: 2.5rem;
    color: #001D4B;
    margin-bottom: 1rem;
}

.value-item h3 {
    color: #001D4B;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.sidebar-card h3 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.sidebar-card li::before {
    content: "•";
    color: #001D4B;
    position: absolute;
    left: 0;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 0;
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-intro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #001D4B;
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #001D4B;
    box-shadow: 0 8px 30px rgba(0, 29, 75, 0.1);
    transform: translateY(-2px);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-header i {
    font-size: 1.8rem;
    color: #001D4B;
}

.service-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #001D4B;
}

.service-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    color: #001D4B;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-availability {
    font-size: 0.9rem;
    color: #001D4B;
    font-weight: 600;
    background: #eff6ff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.service-cta {
    text-align: center;
    padding: 3rem;
    background: #f8fafc;
    border-radius: 12px;
}

.service-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #001D4B;
    margin-bottom: 1rem;
}

.service-cta p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Resources */
.resources-content {
    padding: 4rem 0;
}

.resources-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.resources-intro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #001D4B;
    margin-bottom: 1rem;
}

.resources-intro p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.resources-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.resource-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #001D4B;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resource-category i {
    color: #001D4B;
}

.resource-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.resource-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #001D4B;
}

.resource-item h4 {
    color: #001D4B;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.resource-item p {
    color: #64748b;
    line-height: 1.6;
}

.crisis-banner {
    background: #f0f4ff;
    border: 2px solid #c7d2fe;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
}

.crisis-content h3 {
    color: #001D4B;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.crisis-content p {
    color: #001D4B;
    margin-bottom: 1rem;
}

.crisis-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.crisis-contact {
    background: #fff;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #c7d2fe;
}

.resource-downloads, .external-resources {
    margin: 4rem 0;
}

.resource-downloads h2, .external-resources h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #001D4B;
    margin-bottom: 1rem;
}

.resource-downloads p, .external-resources p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.download-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.download-item:hover {
    border-color: #001D4B;
    box-shadow: 0 4px 20px rgba(0, 29, 75, 0.1);
}

.download-item i {
    font-size: 2rem;
    color: #001D4B;
    margin-bottom: 1rem;
}

.download-item h4 {
    color: #001D4B;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.download-item p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.external-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.external-link {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #001D4B;
}

.external-link h4 {
    color: #001D4B;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.external-link p {
    color: #64748b;
    margin: 0;
}

/* Contact */
.contact-content {
    padding: 4rem 0;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #001D4B;
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-method-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-method-link:hover {
    text-decoration: none;
    color: inherit;
}

.contact-method {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-method-link:hover .contact-method {
    background: #fff;
    border-color: #E98226;
    box-shadow: 0 8px 25px rgba(233, 130, 38, 0.15);
    transform: translateY(-5px);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #001D4B, #003366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.contact-method-link:hover .method-icon {
    background: linear-gradient(135deg, #E98226, #d4741f);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(233, 130, 38, 0.3);
}

.method-icon i {
    font-size: 1.8rem;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-method-link:hover .method-icon i {
    transform: scale(1.1);
}

.contact-method h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #001D4B;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.contact-method-link:hover .contact-method h3 {
    color: #E98226;
}

.contact-method > p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-details p {
    color: #64748b;
    margin-bottom: 0.5rem;
    text-align: left;
}

/* Contact Links */
.contact-detail a,
.contact-details a {
    color: #001D4B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover,
.contact-details a:hover {
    color: #E98226;
    text-decoration: underline;
}

/* Footer contact links - use orange for visibility on blue background */
.footer-section ul li a {
    color: #E98226;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-form-section {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #001D4B;
    margin-bottom: 1rem;
}

.contact-form-section > p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #001D4B;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    /* Better mobile experience */
    min-height: 44px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #001D4B;
    box-shadow: 0 0 0 3px rgba(0, 29, 75, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.crisis-reminder {
    margin: 4rem 0;
}

.crisis-box {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.crisis-box h3 {
    color: #001D4B;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.crisis-box p {
    color: #001D4B;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.crisis-box .crisis-contacts {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.crisis-box .crisis-contacts p {
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid #fecaca;
    margin: 0;
    font-weight: 600;
}

.additional-info {
    margin-top: 4rem;
}

.additional-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.info-item h3 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Hero Image */
.hero-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Large Homepage Sections */
.about-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.about-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.about-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-main h3 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.about-main h3:first-child {
    margin-top: 0;
}

.about-main p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mission-cards {
    display: grid;
    gap: 1.5rem;
}

.mission-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #001D4B;
}

.mission-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.mission-card i {
    font-size: 1.5rem;
    color: #001D4B;
    flex-shrink: 0;
}

.mission-card h4 {
    color: #001D4B;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

.mission-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.services-overview {
    margin-bottom: 3rem;
}

.service-category {
    margin-bottom: 4rem;
}

.service-category h3 {
    font-size: 2rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3D8E38, #2d6b2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.youth-services .service-icon {
    background: linear-gradient(135deg, #3D8E38, #2d6b2a);
}

.service-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.service-card h4 {
    color: #001D4B;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

.family-support-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.family-support-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.family-services-list {
    display: grid;
    gap: 1rem;
}

.family-service-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.family-service-item i {
    font-size: 1.5rem;
    color: #001D4B;
    margin-top: 0.2rem;
}

.family-service-item h4 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.family-service-item p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.support-image-container {
    text-align: center;
}

.support-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.individual-support-highlight {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.individual-support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.support-text h3 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.support-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.support-features {
    list-style: none;
}

.support-features li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.support-features li::before {
    content: "✓";
    color: #059669;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.individual-support-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Challenges Section */
.challenges-section {
    padding: 5rem 0;
    background: #f0f4ff;
}

.challenges-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #001D4B;
    font-weight: 700;
    margin-bottom: 1rem;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.challenge-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #001D4B;
    box-shadow: 0 4px 15px rgba(0, 29, 75, 0.1);
}

.challenge-card h3 {
    color: #001D4B;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.challenge-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-showcase {
    margin-bottom: 3rem;
}

.team-member-highlight {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #2563eb;
}

.member-placeholder {
    text-align: center;
}

.member-placeholder i {
    font-size: 8rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.member-details h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #E98226;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-details p {
    color: #64748b;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.team-member-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.member-placeholder-small {
    width: 80px;
    height: 80px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.member-placeholder-small i {
    font-size: 2rem;
    color: #64748b;
}

.team-member-card h4 {
    color: #001D4B;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member-card .role {
    color: #E98226;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member-card p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.9rem;
}

.volunteers-highlight {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.volunteers-highlight h3 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.volunteers-placeholder {
    background: #e2e8f0;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1rem;
}

.volunteers-placeholder i {
    font-size: 3rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.volunteers-placeholder p {
    color: #64748b;
    font-weight: 500;
}

/* Volunteer CTA Section */
.volunteer-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #001D4B 0%, #003366 100%);
    color: #fff;
}

.volunteer-cta-content {
    text-align: center;
}

.volunteer-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.volunteer-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Preview */
.contact-preview {
    padding: 4rem 0;
    background: #1e293b;
    color: #fff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-method-preview {
    text-align: center;
    padding: 2rem;
}

.contact-method-preview i {
    font-size: 2.5rem;
    color: #E98226;
    margin-bottom: 1rem;
}

.contact-method-preview h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-method-preview p {
    opacity: 0.9;
    line-height: 1.5;
}

/* Impact Section */
.impact-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.impact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 1rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.impact-stat {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #001D4B, #003366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.impact-stat h3 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.impact-stat p {
    color: #64748b;
    line-height: 1.6;
}

.testimonial-section {
    text-align: center;
    padding: 3rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-section blockquote {
    border: none;
    margin: 0;
    padding: 0;
}

.testimonial-section p {
    font-size: 1.3rem;
    color: #1e293b;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-section cite {
    color: #001D4B;
    font-weight: 600;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.method-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.contact-method h3 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-detail {
    color: #001D4B;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-method p:last-child {
    color: #64748b;
    line-height: 1.6;
}

.contact-form-section {
    max-width: 600px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.contact-form-section h3 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Final CTA Section */
.final-cta-section {
    padding: 3rem 0;
    background: #1e293b;
    color: #fff;
}

.final-cta-content {
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Challenges Grid */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.challenge-item {
    background: #fff5f5;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
}

.challenge-item h4 {
    color: #7f1d1d;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.challenge-item p {
    color: #991b1b;
    line-height: 1.6;
}

/* Team Styles */
.team-content {
    padding: 4rem 0;
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.team-intro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.team-intro p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.team-member {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    align-items: start;
}

.team-member.featured {
    border: 2px solid #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.member-image {
    text-align: center;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #2563eb;
}

.placeholder-image {
    width: 120px;
    height: 120px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.placeholder-image i {
    font-size: 3rem;
    color: #64748b;
}

.member-info h3 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.member-role {
    color: #E98226;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-bio, .member-background {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.member-background {
    font-style: italic;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid #2563eb;
}

/* Volunteers Section */
.volunteers-section {
    margin: 4rem 0;
    padding: 3rem;
    background: #f8fafc;
    border-radius: 12px;
}

.volunteers-section h2 {
    text-align: center;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 2rem;
}

.volunteers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.volunteers-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.volunteers-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.volunteer-cta {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
    margin-top: 1.5rem;
}

.volunteer-cta h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.volunteer-cta p {
    margin-bottom: 1.5rem;
}

/* Team Values */
.team-values {
    margin: 4rem 0;
}

.team-values h2 {
    text-align: center;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 2rem;
}

.values-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-showcase {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.value-showcase i {
    font-size: 3rem;
    color: #001D4B;
    margin-bottom: 1rem;
}

.value-showcase h3 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-showcase p {
    color: #64748b;
    line-height: 1.6;
}

/* Services Styles */
.youth-services {
    border-left: 4px solid #059669;
}

.youth-services .service-header i {
    color: #059669;
}

.family-services {
    border-left: 4px solid #7c3aed;
}

.family-services .service-header i {
    color: #7c3aed;
}

.family-support-section, .individual-support-section {
    margin: 4rem 0;
    padding: 3rem;
    background: #f8fafc;
    border-radius: 12px;
}

.family-support-section h2, .individual-support-section h2 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 1rem;
}

.family-support-section p, .individual-support-section p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.family-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.individual-service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.support-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-details h3 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-details p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-details ul {
    list-style: none;
}

.service-details li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-details li::before {
    content: "✓";
    color: #059669;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact Styles */
.volunteer-section {
    margin: 4rem 0;
    padding: 3rem;
    background: #f8fafc;
    border-radius: 12px;
}

.volunteer-section h2 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 2rem;
}

.volunteer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.volunteer-text h3 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.volunteer-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.volunteer-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.volunteer-opportunities h4 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.volunteer-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.volunteer-list li {
    color: #64748b;
    padding-left: 1.5rem;
    position: relative;
}

.volunteer-list li::before {
    content: "•";
    color: #001D4B;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.founder-card {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    border-left: 4px solid #2563eb;
}

.volunteer-text {
    background: #f0f9ff;
    color: #1e40af;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #3b82f6;
    font-size: 0.9rem;
}
.footer {
    background: #001D4B;
    color: #cbd5e1;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #E98226;
}

.emergency-text {
    background: #fef2f2;
    color: #7f1d1d;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #dc2626;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
}

/* Responsive Design */
/* Tablet styles */
@media (max-width: 1024px) {
    html {
        scroll-padding-top: 100px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .mission-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small tablet - Footer fix for 700-800px range */
@media (max-width: 800px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 90px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* About content grid override */
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .crisis-box .crisis-contacts {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Mission cards mobile optimization */
    .mission-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-card {
        padding: 1.5rem;
    }
    
    /* All 2-column grids should be single column on mobile */
    .individual-support-content,
    .individual-service,
    .volunteers-content,
    .family-support-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Hide support images on mobile for better layout */
    .support-image-container {
        display: none;
    }

    /* Contact methods mobile */
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 2rem;
    }    /* Team grid mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Team member highlight - stack vertically on mobile */
    .team-member-highlight {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem;
    }
    
    .member-placeholder i {
        font-size: 4rem;
    }
    
    /* Services grid mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Features grid mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Page headers mobile */
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    /* Better spacing on mobile */
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    html {
        scroll-padding-top: 80px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo-image {
        height: 45px;
        max-width: 200px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Ensure about content grid is single column */
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    /* Mission cards extra small screens */
    .mission-card {
        padding: 1.25rem;
    }
    
    .mission-card h3 {
        font-size: 1.25rem;
    }
    
    /* Ensure all content grids are single column */
    .individual-support-content,
    .individual-service,
    .volunteers-content,
    .family-support-content,
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Contact method cards */
    .contact-method {
        padding: 1.5rem;
        text-align: center;
    }    /* Better button sizing */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    /* Team member highlight - smaller icon on small mobile */
    .team-member-highlight {
        padding: 1.25rem;
    }
    
    .member-placeholder i {
        font-size: 3rem;
    }
    
    .member-details h3 {
        font-size: 1.25rem;
    }
    
    /* Page headers extra small */
    .page-header {
        padding: 5rem 0 2rem;
    }
    
    .page-header h1 {
        font-size: 1.875rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    /* Form improvements */
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    /* Better section spacing */
    section {
        padding: 2rem 0;
    }
    
    /* Navigation improvements */
    .nav-container {
        padding: 0 15px;
    }
    
    /* Logo text truncation prevention */
    .logo {
        min-width: 0;
        flex-shrink: 1;
    }
    
    /* Mission card headers mobile */
    .mission-card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .mission-card-header i {
        font-size: 2rem;
    }
}

/* Photo Gallery Styles */
.photo-gallery {
    margin-top: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.photo-placeholder {
    aspect-ratio: 4/3;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.photo-placeholder:hover {
    border-color: #E98226;
    background: #fff5f0;
    transform: translateY(-2px);
}

.photo-placeholder i {
    font-size: 2.5rem;
    color: #E98226;
    margin-bottom: 1rem;
}

.photo-placeholder p {
    color: #666;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.photo-item {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .photo-placeholder i {
        font-size: 2rem;
    }
}