.about-one__president {
    margin: 2rem 0 2rem 2rem;
    padding: 1.5rem;
    background: rgba(4, 10, 187, 0.968);
    border-radius: 10px;
}

.about-one__president__title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f8f8f8;
    text-align: center;
}

.about-one__president__profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.about-one__president__image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.about-one__president__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-one__president__info {
    flex: 1;
}

.about-one__president__name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.about-one__president__role {
    font-size: 16px;
    color: #ffffff;
    margin: 0;
}

@media (max-width: 768px) {
    .about-one__president__profile {
        flex-direction: column;
        text-align: center;
    }

    .about-one__president__image {
        margin: 0 auto;
    }
}