.about-container {
    display: flex;
    align-items: flex-start; /* Aligns items to the top */
    gap: 50px;              /* Space between photo and text */
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;         /* Centers the section on wide screens */
}

.about-container img {
    width: 300px;           /* Fixed size for the photo */
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.about-text {
    flex: 1;                /* Takes up all space next to image */
}

.personal-info {
    margin-top: 25px;
}

.personal-info ul {
    list-style: none;       /* Removes the dots */
    padding: 0;
    display: grid;          /* Creates the side-by-side list layout */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 15px;
}

.personal-info li strong {
    color: #149ddd;
    display: inline-block;
    width: 100px;           /* Aligns the labels */
}

/* Responsive: Stack them on mobile */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-container img {
        width: 200px;
    }
}