/* ======================= SECTION 1: WHO ARE WE ======================= */
.about-banner {
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center */
    height: 100vh;
    position: relative;      /* for stacking if needed */
}

.about-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('images/about-banner.jpg') center/cover no-repeat;
    opacity: 0.3; /* makes the photo itself faded */
    z-index: 0;
}

.impact-heading {
    position: relative;      /* just stay in flow */
    font-size: 4rem;
    text-align: center;
    z-index: 2;
}

/* ======================= SECTION 2: ABOUT CONTENT ======================= */
.about-content {
    display: flex;
    justify-content: center;
    padding: 6rem 2rem;
}

.about-text-box {
    width: 60%;
    font-family: 'Aileron', sans-serif;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #222; /* dark gray / almost black */
    max-width: 80%;
    text-align: justify;

}

/* ======================= SECTION 3: OUR APPROACH ======================= */
.approach-banner {
    position: relative;
    height: 100vh;
    background: url('images/about-banner-2.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.approach-box {
    background-color: rgb(248, 247, 242);
    width: 50%;
    height: 70%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.approach-box h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.approach-text {
    color: #222;
    text-align: justify;
    font-family: 'Aileron', sans-serif;
    font-size: 1.2rem;
    line-height: 1.7;
}

/* ======================= SECTION 4: PROBLEM ======================= */
.problem-section {
    padding: 6rem 2rem;
    text-align: center;
    background-color: rgb(248, 247, 242);
    height: 100vh;
    text-align: center;

    display: flex;                  /* make it flex container */
    flex-direction: column;         /* stack heading and text vertically */
    justify-content: center;        /* vertical centering */
    align-items: center;            /* horizontal centering */
    padding: 0 2rem;                /* horizontal padding only */
    
}

.problem-section .impact-heading {
    font-size: 3.5rem;
    color: rgb(0,50,125);
    margin-bottom: 3rem;
}

.problem-text-box {
    width: 70%;
    margin: 0 auto;
    color: #222;
    text-align: justify;
    font-family: 'Aileron', sans-serif;
    font-size: 1.2rem;
    line-height: 1.7;
}

/* ======================= SECTION 5: WHY LEADERSHIP ======================= */
.why-leadership {
    padding: 4rem 2rem;
    text-align: center;
    margin: auto 8rem;
}

.why-leadership h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
}

.leadership-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.leadership-card {
    background-color: rgb(248, 247, 242);
    flex: 1 1 30%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;

    color: #222;
    text-align: center;
    font-family: 'Aileron', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

.leadership-card img {
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
}

.quote-row {
    display: flex;
    align-items: center;
    padding: 2rem;
    margin-bottom: 3rem;
    font-size: 1rem;

    font-weight: bold;
    font-family: 'Aileron', sans-serif;
    font-style: italic;
}

.green-quote {
    background-color: rgb(221, 225, 192); /* light green */
    border-left: 15px solid rgb(57, 76, 24); /* dark green */
    width: 70%;
    margin: 0 auto;
    color: rgb(57, 76, 24); /* dark green */
}

.red-quote {
    background-color: rgb(228, 214, 215); /* light red/pink */
    border-left: 15px solid rgb(120, 48, 53); /* red */
    width: 70%;
    margin: 0 auto;
    color: rgb(120, 48, 53);
}

/* ======================= SECTION 6: THOUGHT TO DESTINY ======================= */
.thought-cycle {
    padding: 2rem 2rem;
    text-align: center;
}

.thought-cycle h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.cycle-text {
    width: 70%;
    margin: 0 auto 3rem auto;
    text-align: justify;
    font-size: 1.2rem;

    color: #222;
    font-family: 'Aileron', sans-serif;
}

.cycle-image img {
    width: 40%;
    margin: 2rem auto;
    display: block;
}

/* ======================= RESPONSIVE ======================= */
@media(max-width: 900px) {
    .impact-heading { font-size: 2.5rem; }
    .approach-box { width: 90%; height: auto; padding: 2rem; }
    .approach-box h2 { font-size: 2rem; }
    .problem-section .impact-heading { font-size: 2.5rem; }
    .problem-text-box, .cycle-text { width: 90%; }
    .leadership-columns { flex-direction: column; gap: 1.5rem; }
    .leadership-card { flex: 1 1 100%; }
    .cycle-image img { width: 90%; }
}
