body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
    background: #f7f5f8;
    margin: 0;
}
main {
    min-height: 100vh;
}
/* Hero Section */
.hero-new {
    position: relative;
    background: linear-gradient(120deg, #702937 70%, #a13b5d 100%);
    color: #fff;
    padding: 2.5rem 0 2rem 0;
    text-align: center;
    border-bottom-left-radius: 36px;
    border-bottom-right-radius: 36px;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.18;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}
.hero-new h1 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.hero-new .lead {
    font-size: 1.14rem;
    margin-bottom: 1.6rem;
    font-weight: 400;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    margin-bottom: 2.2rem;
}
.hero-cta .btn-cta {
    padding: 0.55rem 1.2rem;
    font-size: 1rem;
    min-width: 110px;
    max-width: 180px;
    width: auto;
    margin: 0;
    border-radius: 1.6rem;
}
.btn-cta {
    border: none;
    outline: none;
    border-radius: 2rem;
    padding: 0.7rem 1.7rem;
    font-size: 1.08rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(112,41,55,0.08);
    margin: 0 0.1rem;
    display: inline-block;
    background: #ff5e6c;
    color: #fff;
}
.btn-cta.btn-alt {
    background: #fff;
    color: #ff5e6c;
    border: 2px solid #ff5e6c;
}
.btn-cta.btn-outline {
    background: transparent;
    color: #ff5e6c;
    border: 2px solid #ff5e6c;
}
.btn-cta:hover, .btn-cta:focus {
    background: #fff;
    color: #ff5e6c;
    outline: none;
}
.btn-cta.btn-alt:hover, .btn-cta.btn-alt:focus,
.btn-cta.btn-outline:hover, .btn-cta.btn-outline:focus {
    background: #ff5e6c;
    color: #fff;
    border-color: #ff5e6c;
}
/* Only make form submit buttons full width */
form .btn-cta,
form button[type="submit"] {
    width: 100%;
}
/* Card buttons: auto width, centered, never overflow */
.info-card .btn-cta,
.program-card .btn-cta,
.impact-card .btn-cta {
    width: auto;
    min-width: 110px;
    max-width: 90%;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    white-space: nowrap;
}
.hero-icons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 2.2rem;
    flex-wrap: wrap;
}
.hero-icons div {
    background: rgba(255,255,255,0.13);
    border-radius: 1.5rem;
    padding: 0.7rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
}
.hero-icons i {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}
/* Info Card (full width variant) */
.info-card.info-card-wide {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 1.3rem;
    box-shadow: 0 2px 12px rgba(112,41,55,0.07);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
@media (max-width: 600px) {
    .info-card.info-card-wide {
        padding: 1rem 0.4rem;
        border-radius: 0.7rem;
    }
}
.photo-gallery {
    background: #fff;
    padding: 2rem 0 2.5rem 0;
    text-align: center;
    border-radius: 28px;
    margin: 1.5rem 0;
    box-shadow: 0 2px 12px rgba(112,41,55,0.07);
}
.photo-gallery h2 {
    color: #702937;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    padding: 0 1rem;
    justify-items: center;
}
.gallery-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(112,41,55,0.08);
    background: #f7f5f8;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.gallery-img img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    transition: transform 0.2s;
}
.gallery-img:hover, .gallery-img:focus {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(112,41,55,0.13);
}
@media (min-width: 600px) {
    .gallery-img img {
        height: 150px;
    }
}
@media (min-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .gallery-img img {
        height: 170px;
    }
}
.section-alt {
    background: #f8eaf3;
    border-radius: 28px;
    margin: 1.5rem 0;
    padding: 2rem 0 1.5rem 0;
    text-align: center;
}
.section-alt h2, .section-impact h2, .section-involved h2 {
    color: #702937;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 700;
}
.card-grid {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0 1rem 0;
}
.info-card {
    width:90%;
    background: #fff;
    border-radius: 1.3rem;
    box-shadow: 0 2px 12px rgba(112,41,55,0.07);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    flex: 1 1 190px;
    max-width: 270px;
    min-width: 140px;
    text-align: center;
    margin-bottom: 1rem;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.info-card i {
    font-size: 2.2rem;
    color: #702937;
    margin-bottom: 0.7rem;
}
.info-card h3 {
    margin-bottom: 0.5rem;
    color: #a13b5d;
    font-size: 1.13rem;
}
.info-card p {
    font-size: 1.02rem;
    margin-bottom: 1rem;
    color: #333;
}
.info-card a.btn-cta {
    margin-top: auto;
}
.info-card:hover, .info-card:focus-within {
    box-shadow: 0 6px 24px rgba(112,41,55,0.13);
    transform: translateY(-4px) scale(1.025);
}
.section-impact {
    background: #fff;
    border-radius: 28px;
    margin: 1.5rem 0;
    padding: 2rem 0 1.5rem 0;
    text-align: center;
    box-shadow: 0 2px 12px rgba(112,41,55,0.07);
}
.impact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.impact-card {
    background: #f8eaf3;
    border-radius: 1.1rem;
    box-shadow: 0 2px 12px rgba(112,41,55,0.07);
    padding: 1.1rem 1rem;
    min-width: 150px;
    max-width: 220px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.impact-card i {
    font-size: 1.6rem;
    color: #a13b5d;
    margin-bottom: 0.5rem;
}
.impact-card p {
    font-size: 1rem;
    color: #333;
}
.coming-soon {
    text-align: center;
    color: #a13b5d;
    font-size: 1.12rem;
    margin-top: 1.2rem;
}
.section-involved {
    background: linear-gradient(120deg, #702937 70%, #a13b5d 100%);
    color: #fff;
    border-radius: 28px;
    margin: 1.5rem 0 2.5rem 0;
    padding: 2rem 0 2rem 0;
    text-align: center;
}
.section-involved h2 {
    color: #ffd700;
}
.section-involved .info-card {
    background: #fff;
    color: #702937;
}
.section-involved .info-card h3 {
    color: #a13b5d;
}
.section-involved .info-card p {
    color: #333;
}
@media (max-width: 900px) {
    .hero-content {
        padding: 0 0.3rem;
    }
    .hero-new h1 {
        font-size: 1.3rem;
    }
    .gallery-section {
        padding: 1.2rem 0 1.5rem 0;
        border-radius: 18px;
    }
    .card-grid, .impact-list {
        flex-direction: column;
        gap: 0.7rem;
        align-items: center;
    }
    .carousel-card img {
        max-width: 94vw;
        max-height: 120px;
    }
}
@media (max-width: 600px) {
    .hero-new {
        padding: 1.2rem 0 1rem 0;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
    }
    .gallery-section {
        margin: 1rem 0;
    }
    .carousel-card img {
        border-radius: 10px;
    }
    .info-card, .impact-card {
        min-width: 0;
        max-width: 98vw;
        width: 100%;
        padding: 1rem 0.6rem;
    }
    .card-grid {
        flex-direction: column;
        gap: 0.7rem;
        align-items: center;
    }
}
