.page-banner h1 {
    font-size: 2.5rem;
    color: #00adb5;
    text-shadow: 0 10px 10px rgba(0, 173, 181, 0.2);
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
    text-align: justify;
}

.section-title {
    color: #002b49;
    border-bottom: 2px solid #00adb5;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 2rem;
}

/* Board Member Cards */
.member-card {
    background: #fff;
    border-left: 5px solid #002b49;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    animation: fadeUp 1s ease both;
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-name {
    color: #002b49;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.member-title {
    color: #00adb5;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
    display: block;
}

.member-bio {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.key-role {
    background: #f0f4f7;
    padding: 15px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.key-role strong {
    color: #002b49;
}

/* Responsive */
@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 1.8rem;
    }

    .container {
        margin: 20px auto;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}