.about {
    padding: 6rem 0 0 ;
    background-color: #ffffff;
}

.about-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-image {
    flex: 0 0 290px;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
}

.about-title {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.about-text {
    /* font-size: 1.1rem; */
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2.5rem;
}

.about-icons {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 0rem;
    margin-top: 1rem;
}

.about-icon img {
    height: 100px;
    margin-bottom: 1rem;
}

.about-icon p {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

@media (min-width: 992px) {
    .about-container {
        gap: 2rem;
        flex-direction: row;
    }

    .about-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-image img {
        height: 500px;
    }

    .about-icon img {
        height: 120px;
    }
   
}

@media (max-width: 768px) {
   
}