.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: space-evenly;
    margin: 1rem 0;
    padding: 1rem;
    width: 100%;
    /*color: aliceblue;*/
    border-radius: 10px;
}

.heading {
    font-family: 'Russo One', monospace;
    font-size: 3rem;
    letter-spacing: 2rem;
    margin: 2rem 0;
    padding: 0;
}

.profile-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
}

.profile-box {
    min-width: 18%;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /*box-shadow: 0 0 10px rgba(206, 0, 255, 0.57), 0 0 30px rgba(255, 255, 255, 0.1);*/
    text-align: center;
}

.profile-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.1);
}

.profile-details {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.profile-position {
    font-size: 1rem;
    color: #ba9c9c;
    margin: 5px 0 0 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-container {
        grid-template-columns: 1fr;
    }

    .profile-box {
        width: 100%;
        margin-bottom: 20px;
    }
}
