/* Gaya Khusus untuk Halaman About */

.about-page-section {
    padding: 6rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.about-page-section .container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.bg-image {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)),
        url('../images/background.jpg') center center / cover no-repeat fixed;
    color: #fff;
}

.bg-light-gray {
    background-color: var(--light-gray);
    color: var(--font-color-dark);
}

.transparent-box {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.37);
}

.transparent-box h2 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
    line-height: 1.4;
    text-align: center;
}

/* Gaya untuk subtitle di dalam h2 */
.transparent-box h2 .subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gold-color);
    margin-top: 0.5rem;
}

.transparent-box p,
#our-team p {
    line-height: 1.9;
    font-size: 1.1rem;
    text-align: justify;
    margin-bottom: 1rem;
}

/* ------------------- GAYA FOUNDER SECTION ------------------- */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin: 0 auto;
}

.full-width-paragraph {}

/* ------------------- GAYA REASON SECTION ------------------- */
.bg-light-gray h2 { margin-bottom: 2rem; font-size: 2.5rem; }
.reasons-list { list-style: none; padding: 0; display: inline-block; text-align: left; max-width: 100%; }
.reasons-list li { font-size: 1.2rem; font-weight: 500; padding: 1rem 0; border-bottom: 1px solid #ddd; }
.reasons-list li:last-child { border-bottom: none; }
.reasons-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--gold-color); margin-right: 1rem; font-size: 1.1rem; }

/* ------------------- GAYA TEAM SECTION ------------------- */
.team-main-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.team-secondary-title {
    font-size: 2.2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

#our-team p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Aturan untuk layar desktop */
@media (min-width: 992px) {
    .about-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
    }
    .about-image { order: 2; }
    .about-text { order: 1; }
    .about-image img {
        max-width: 100%;
    }
}