/* About Section Styling */
#about {
    padding: 25px 0;
}

#about_row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 100px;
}

/* About Column */
.about_col {
    flex: 1;
    min-width: 300px; /* Ensure a minimum width for smaller screens */
    margin: 10px;     /* Add margin to separate columns */
}

/* Image Styling */
#about_img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: auto;
}

#about_img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover; /* Use cover to maintain aspect ratio */
}

/* Headings */
.about_col h1 {
    text-align: center;
    font-family: cursive;
}

.about_col p {
    text-align: justify;
    font-weight: bold;
}

#section {
    text-align: center;
    font-size: 25px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    #about_row {
        padding: 0 20px; 
        flex-direction: column; 
    }

    #about_img {
        width: 200px; 
        height: 200px; 
    }

    #section {
        font-size: 20px; 
    }
}

@media (max-width: 480px) {
    #about_col h1 {
        font-size: 18px; 
    }

    .about_col p {
        font-size: 14px;
    }
}
