#bodyofabout {
    margin: 0px;
    font-family: Arial, sans-serif;
    background: #26262654;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100vw;
}

#bodyofabout .about-container {
    background: #f9f9f9;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 400px !important;
    padding: 20px;
    position: fixed;
    margin-bottom: 100%;
    top: 20px;
    overflow: auto;
    z-index: 1;
    height: 90vh;
}

#bodyofabout .about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #d8f3dc;
    padding: 10px 20px;
    border-bottom: 2px solid #95d5b2;
}

#bodyofabout .about-header h1 {
    margin: 0;
    color: #2d6a4f;
}

#bodyofabout .close-btn {
    background-color: transparent;
    border: none;
    font-size: 1.5em;
    color: #2d6a4f;
    cursor: pointer;
}

#bodyofabout .about-content {
    padding: 20px;
}

#bodyofabout .design-section,
#bodyofabout .guidance-section {
    margin-bottom: 20px;
}

#bodyofabout .person {
    display: flex;
    padding: 10px 20px;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
    border-radius: 101px;
    background: #FFE9E9;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.70);
}

#bodyofabout .person p {
    margin: 5px;

}

#bodyofabout .profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: left;
}

#bodyofabout .person-detail {
    display: flex;
    align-items: center;
    gap: 10px;
}

#bodyofabout .contact-btn {
    background-color: #2d6a4f;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    object-position: right;
}

#bodyofabout .contact-btn:hover {
    background-color: #1b4332;
}

#bodyofabout .description {
    margin: 20px 0;
    line-height: 1.5;
}


#bodyofabout .close-btn-footer {
    width: 100%;
    background-color: #2d6a4f;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1em;
}

#bodyofabout .close-btn-footer:hover {
    background-color: #1b4332;
}