body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
    box-sizing: border-box;
    background: #faf4e6;
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1464983953574-0892a716854b?auto=format&fit=crop&w=1500&q=80') center center/cover no-repeat;
    color: #fff;
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 48px 0 48px;
    font-size: 1.1rem;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.navbar li {
    cursor: pointer;
    position: relative;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.navbar .dropdown span {
    font-size: 0.8em;
    margin-left: 4px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -12px;
}

.logo-icon {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.logo-text {
    font-size: 2rem;
    font-family: 'Georgia', serif;
    letter-spacing: 2px;
    font-weight: bold;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding: 2px 16px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin-top: 80px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.1;
    text-align: center;
    margin: 0 0 24px 0;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.3rem;
    text-align: center;
    max-width: 700px;
    margin: 0 0 40px 0;
    color: #f3f3e9;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.btn {
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
    cursor: pointer;
}

.btn-primary {
    background: #f3f3e9;
    color: #3d3d2f;
    border: none;
}

.btn-primary:hover {
    background: #e0e0d1;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

.mission-section {
    background: #faf4e6;
    padding: 80px 0 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mission-title {
    color: #4b6137;
    font-size: 1.3rem;
    font-family: 'Georgia', serif;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.mission-text {
    color: #2d2d2d;
    font-size: 3rem;
    font-family: 'Georgia', serif;
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.15;
}

.mission-btn {
    display: inline-block;
    padding: 18px 56px;
    border: 1.5px solid #4b6137;
    border-radius: 8px;
    background: transparent;
    color: #4b6137;
    font-size: 1.4rem;
    font-family: 'Georgia', serif;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    margin-top: 12px;
}

.mission-btn:hover {
    background: #e6e6d6;
    color: #2d2d2d;
}

.gallery-section {
    background: #faf4e6;
    padding: 32px 0 48px 0;
    width: 100%;
    overflow-x: auto;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.gallery-scroll {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding: 0 24px;
    scrollbar-width: thin;
    scrollbar-color: #d1cfc7 #faf4e6;
    justify-content: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
}

.gallery-scroll::-webkit-scrollbar {
    height: 12px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: #d1cfc7;
    border-radius: 6px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: #faf4e6;
}

.gallery-card {
    min-width: 350px;
    max-width: 400px;
    height: 520px;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    flex: 0 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.programs-section {
    background: #f9f9fb;
    padding: 60px 0 40px 0;
    text-align: center;
}

.programs-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d2d2d;
    letter-spacing: 1px;
}

.programs-desc {
    color: #555;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 36px auto;
}

.programs-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
}

.program-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    width: 270px;
    padding: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}

.program-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}

.program-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
}

.program-badge {
    margin-top: 16px;
    margin-bottom: 8px;
    display: inline-block;
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.program-badge.education {
    background: #4a90e2;
}

.program-badge.emergency {
    background: #e94e77;
}

.program-badge.healthcare {
    background: #43b97f;
}

.program-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #222;
}

.program-card-desc {
    font-size: 0.98rem;
    color: #555;
    margin: 0 16px 16px 16px;
}

.program-link {
    color: #4a90e2;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.97rem;
    transition: color 0.2s;
}

.program-link:hover {
    color: #e94e77;
}
/* Card left right */

/* Responsive */
@media (max-width: 900px) {
    .programs-cards {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .program-card {
        width: 90%;
        max-width: 340px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .navbar {
        flex-direction: column;
        gap: 16px;
        padding: 24px 12px 0 12px;
    }
    .hero-section {
        border-radius: 0;
    }
    .mission-text {
        font-size: 2rem;
    }
    .mission-btn {
        font-size: 1.1rem;
        padding: 14px 32px;
    }
    .gallery-scroll {
        gap: 16px;
        padding: 0 8px;
    }
    .gallery-card {
        min-width: 240px;
        max-width: 260px;
        height: 320px;
    }
}
