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

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    color: #92400e;
    line-height: 1.6;
    min-height: 100vh;
}

nav {
    background: rgba(204, 0, 0, 0.95);
    padding: 1rem 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    transition: background 0.2s;
}

nav a:hover { background: rgba(255,255,255,0.2); }
nav a.active { background: rgba(255,255,255,0.3); }
nav .site-title { font-size: 1.2rem; font-weight: 800; margin-right: auto; color: white; text-decoration: none; }

.hero {
    position: relative;
    height: 85vh;
    background: url('welfare_team.JPG') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-text {
    position: relative;
    z-index: 1;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero-text h1 { font-size: 3.5rem; font-weight: 900; margin-bottom: 1rem; }
.hero-text p { font-size: 1.3rem; max-width: 600px; }

.boxes-section { padding: 3rem 2rem; max-width: 1200px; margin: 0 auto; }

.boxes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}


.box-card {
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: #92400e;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 5px solid #003d99;
    display: block;
}

.box-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.18); border-top-color: #dc2626; }
.box-card .icon { font-size: 3rem; margin-bottom: 1rem; }
.box-card h2 { font-size: 1.4rem; margin-bottom: 0.5rem; color: #1e293b; }
.box-card p { color: #64748b; font-size: 0.95rem; }

.page-content { max-width: 1200px; margin: 0 auto; padding: 3rem 2rem; }
.page-title { font-size: 2.5rem; font-weight: 800; color: #1e293b; margin-bottom: 0.5rem; }
.page-subtitle { color: #64748b; font-size: 1.1rem; margin-bottom: 2rem; }

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

.team-card {
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #f97316;
    text-align: center;
}

.team-card .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #dc2626);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    font-weight: 800;
    overflow: hidden;
}

.team-card .avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-card h3 { font-size: 1.3rem; color: #1e293b; margin-bottom: 0.25rem; }
.team-card .role { color: #f97316; font-weight: 600; margin-bottom: 0.75rem; }
.team-card p { color: #64748b; font-size: 0.9rem; margin-bottom: 1rem; }
.team-card a { color: #dc2626; font-weight: 600; font-size: 0.9rem; }

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

.service-card {
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    border-left: 4px solid #f97316;
    transition: all 0.3s;
}

.service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.service-card.hidden { display: none; }
.service-card.highlight { border-left-color: #10b981; box-shadow: 0 0 20px rgba(16,185,129,0.3); }
.service-card.crisis { background: #fef2f2; border-left-color: #ef4444; }
.service-card h3 { font-size: 1.2rem; color: #1e293b; margin-bottom: 0.5rem; }
.service-card .desc { color: #64748b; margin-bottom: 1rem; font-size: 0.95rem; }
.service-card .contact { font-weight: 700; color: #059669; }

.badge { background: #fef3c7; color: #92400e; padding: 0.2rem 0.6rem; border-radius: 20px; font-size: 0.8rem; margin-bottom: 0.75rem; display: inline-block; }

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

.quick-btn { background: white; border: 2px solid #e2e8f0; padding: 1rem; border-radius: 12px; cursor: pointer; font-size: 1rem; font-weight: 600; transition: all 0.3s; color: #92400e; }
.quick-btn:hover, .quick-btn.active { background: #f97316; color: white; border-color: #f97316; transform: translateY(-2px); }

.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter-btn { background: #fde68a; border: none; padding: 0.5rem 1rem; border-radius: 20px; cursor: pointer; font-size: 0.9rem; font-weight: 600; color: #92400e; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: #f97316; color: white; }

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

.link-card { background: rgba(255,255,255,0.95); border-radius: 12px; padding: 1.5rem; box-shadow: 0 4px 6px rgba(0,0,0,0.08); border-left: 4px solid #f97316; text-decoration: none; display: block; transition: all 0.3s; color: #92400e; }
.link-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); border-left-color: #dc2626; }
.link-card h3 { color: #1e293b; font-size: 1.1rem; margin-bottom: 0.5rem; }
.link-card p { color: #64748b; font-size: 0.9rem; }
.link-card .arrow { color: #f97316; font-weight: 800; margin-top: 0.5rem; }

.insta-box { background: linear-gradient(135deg, #f97316, #dc2626); border-radius: 16px; padding: 2.5rem; text-align: center; color: white; margin-bottom: 2rem; }
.insta-box h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.insta-btn { display: inline-block; background: white; color: #dc2626; font-weight: 800; padding: 0.8rem 2rem; border-radius: 25px; text-decoration: none; margin-top: 1rem; font-size: 1.1rem; transition: all 0.3s; }
.insta-btn:hover { transform: scale(1.05); }

footer { background: rgba(204, 0, 0, 0.9); color: white; text-align: center; padding: 2rem; margin-top: 4rem; font-size: 0.9rem; }

@media (max-width: 768px) {
    .hero-text h1 { font-size: 2.2rem; }
    .page-content { padding: 2rem 1rem; }
    nav { gap: 0.75rem; padding: 0.75rem 1rem; }
    nav a { font-size: 0.85rem; padding: 0.3rem 0.5rem; }
    .boxes-grid { grid-template-columns: repeat(2, 1fr); }
}
/* FAQ Styles */
.faq-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #fff7f0;
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question::after {
    content: '▼';
    font-size: 1.4rem;
    color: #e07b30;
}

.faq-question.open {
    background: #ffe8d6;
}

.faq-question.open::after {
    content: '▲';
}

.faq-question:hover {
    background: #ffe8d6;
}

.faq-answer {
    display: none;
    padding: 16px 20px;
    background: #fff;
    color: #555;
    line-height: 1.7;
}

.faq-answer ul {
    margin: 10px 0 10px 20px;
}

.faq-answer a {
    color: #e07b30;
}
.restock-btn {
    display: inline-block;
    background: #dc2626;
    color: white;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
}
.restock-btn:hover { background: #b91c1c; transform: scale(1.05); }
