.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-card {
    flex: 1 1 300px;
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #9b59b6;
}

.profile-picture {
    margin-bottom: 1rem;
}

.profile-picture img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info h2 {
    font-size: 2rem;
    color: #9b59b6;
    margin-bottom: 0.5rem;
}

.profile-info p {
    font-size: 1.2rem;
}

.bio {
    flex: 2 1 600px;
    text-align: left;
}

.bio h3 {
    font-size: 1.5rem;
    color: #9b59b6;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.bio p,
.bio ul {
    font-size: 1.2rem;
    line-height: 1.6;
}

.bio ul {
    list-style: none;
    padding: 0;
}

.bio ul li {
    background-color: #1e1e1e;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    border-left: 3px solid #9b59b6;
}

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

    .bio {
        text-align: center;
    }
}
