#about .head
{
    text-align: center;  /* #00bf63
                            #cc2331 */
}
#about .headstyle
{
    
    padding: 5px 15px;
    background-image: linear-gradient(to left, #00bf63, #575656);
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    color: #f7f4f4;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
}

.about-image {
    text-align: center; /* Center the image on small screens */
}

.about-image .AboutUS {
    max-width: 60%;
    height: auto;
    border-radius: 8px;
}

.about-text {
    padding: 20px;
}

.about-text h2 {
    font-size: 1.8rem;
    color: #333; /* Customize as needed */
    text-shadow: 2px 3px 3px #00bf63;
    font-weight: bold;
    margin-top: 10px;
}

.about-text p {
    font-size: 1.2rem;
    color:#333;
    margin-left: 20px;
    font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        padding: 0 15px;
    }
}