/* ===== HERO ===== */
.women-hero {
    height: 100vh;
    background: url('images/image\ 2.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 300px;
}

.women-hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
}

.women-hero-content p {
    margin-top: 10px;
    font-size: 1.2rem;
}

/* ===== ABOUT ===== */
.women-about {
    padding: 60px 10%;
    text-align: center;
}

.women-about h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.women-about p {
    width: 90%;
    margin: auto;
    font-size: 1.1rem;
    color: #555;
}

/* ===== PROGRAMS ===== */
/* ---- WOMEN PROGRAMS SECTION ---- */
.women-programs {
    text-align: center;
    padding: 60px 20px;
}

.women-programs h2 {
    font-size: 34px;
    font-weight: 700;
    color: #2d7a35;
    margin-bottom: 40px;
}

/* BOXES CONTAINER */
.program-boxes {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* SINGLE CARD */
.program-card {
    display: flex;
    align-items: flex-start;
    background: #e8f7e8;
    padding: 22px 28px;
    border-radius: 12px;
    gap: 20px;
    border-left: 6px solid #2d7a35;
}

/* ICON STYLE */
.program-card .icon {
    font-size: 34px;
    line-height: 1;
}

/* TEXT CONTENT */
.program-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2d7a35;
    margin-bottom: 6px;
}

.program-card p {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
    .program-card {
        flex-direction: column;
        text-align: left;
    }
    .program-card .icon {
        font-size: 30px;
    }
}


/* ===== GET INVOLVED ===== */
.women-involved {
    padding: 60px 10%;
    text-align: center;
    background: #e63980;
    color: white;
}

.women-involved p {
    margin: 10px auto 25px;
    width: 70%;
}

.btn {
    padding: 12px 28px;
    border-radius: 8px;
    background: white;
    color: #e63980;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.btn:hover {
    opacity: 0.8;
}