

.president-image {
    width: 100%;
    max-width: 250px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.president-title {
    font-size: 28px;
    font-weight: bold;
    /* margin-bottom: 20px; */
    color: #fdc02f;
    /* border-bottom: 3px solid #fdc02f; */
    display: inline-block;  /* This ensures the underline is only as long as the text */
    padding-bottom: 5px;
}


.president-text {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.president-name {
    font-weight: bold;
    font-size: 18px;
    margin-top: 10px;
    color: #333;
}

.president-role {
    font-size: 14px;
    color: #777;
}

@media (max-width: 768px) {
    

    .president-image {
        max-width: 200px;
        margin-bottom: 20px;
    }
}

.profile-section {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}



.profile-subheading {
    font-size: 22px;
    font-weight: bold;
    /* margin-top: 20px; */
    color: #000000;

}

.profile-text {
    font-size: 16px;
    /* line-height: 1.8; */
    color: #555;
    text-align: justify;
}

@media (max-width: 768px) {
    .profile-section {
        padding: 30px;
    }

    .profile-heading {
        font-size: 24px;
    }

    .profile-subheading {
        font-size: 20px;
    }

    .profile-text {
        font-size: 14px;
    }
}