/* =====================================================
   HelpStar — Community Outreach Page Styles
   ===================================================== */

/* ── Hero Banner ── */
.outreach-hero {
    background-color: #3f7b70; /* Dark green/teal from screenshot */
    padding: 5rem 0 5rem 2rem;
    position: relative;
    border-bottom-right-radius: 6rem;
    overflow: hidden;
}

.outreach-hero-title {
    color: #F5A623; /* Yellow/Gold */
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.outreach-hero-text {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 90%;
}

.outreach-hero-btn {
    background-color: #c4fff2; /* Light teal */
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.8rem 2.5rem;
    border: none;
    border-radius: 50rem;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, background-color 0.2s;
}

.outreach-hero-btn:hover {
    background-color: #9cf5e0;
    transform: translateY(-2px);
    color: #000;
}

.outreach-hero-img-wrap {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.outreach-hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.outreach-hero-img-placeholder {
    width: 100%;
    max-width: 500px;
    height: 350px;
    background-color: #2c5951;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ── Section 2: Involves ── */
.outreach-involves-section {
    padding: 5rem 0;
}

.outreach-involves-card {
    border: 1px solid #e0ebe8;
    border-radius: 0.75rem;
    padding: 3rem;
    background-color: #fbfdfd;
}

.outreach-involves-heading {
    color: #0d4a45;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.outreach-list {
    padding-left: 1.25rem;
    margin: 0;
}

.outreach-list li {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* ── Section 3: Goals ── */
.outreach-goals-section {
    padding: 2rem 0 6rem;
}

.outreach-goals-img-wrap {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.outreach-goals-img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    border-bottom-left-radius: 4rem;
    object-fit: cover;
}

.outreach-goals-img-placeholder {
    width: 100%;
    height: 350px;
    background-color: #f0f5f4;
    border-radius: 1.5rem;
    border-bottom-left-radius: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d4a45;
    font-size: 3rem;
}

.outreach-goals-heading {
    color: #0d4a45;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.outreach-goals-content {
    padding-top: 2rem;
}
