/*About and contact*/
.profile-pic {

    float: left;
    width: 200px;
    height: auto;
    border-radius: var(--radius);
    margin-right: 20px;
    margin-bottom: 15px;
    flex-shrink: 0;
}


.about-card{
    background: var(--bg-surface);
    color: var(--text-light);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-medium);
    transition: transform 0.2s ease;
    max-width: 1250px;
    margin: 40px auto;
}

.about-lists{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.about-list-card{
    background: var(--bg-surface);
    color: var(--text-light);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-medium);
    transition: transform 0.2s ease;
    flex: 1;
    max-width: 400px;
}