#about .profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#about .profile-details {
    text-align: left;
    margin-top: 20px;
}

#about h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #f39c12; /* Add a different color for the position name */
}

#about h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #f39c12; /* Add a different color for the position name */
}

#about p {
    font-size: 1em;
    line-height: 1.6;
        margin: 0 auto;
    text-align: left;
    }

#about h3 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
    color: #f39c12; /* Add a different color for the heading */
}

#about ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 600px;
}

#about ul li {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    }

#about ul li::before {
    content: '\f00c'; /* FontAwesome check icon */
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: #f39c12; /* Add a different color for the icon */
}

#about .education-details {
    font-size: 0.9em; /* Make the text smaller */
    color: #ccc; /* Set an appropriate color */
}

/* Media query for desktop view */
@media (min-width: 768px) {
    #about .content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #about .profile-image {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    #about .profile-details {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 95%;
    }

    #about .profile-details > div:first-child {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    #about .profile-details > div:nth-child(2) {
        flex: 1 1 40%;
        margin-bottom: 20px;
    }

    #about .profile-details > div:nth-child(3) {
        flex: 1 1 20%;
        margin-bottom: 20px;
    }

    #about .profile-details > div:nth-child(4) {
        flex: 1 1 40%;
        margin-bottom: 20px;
    }
}
