/* feactures section */
#product1 {
    text-align: center;
    padding-top: 1rem;
    font-size: 1.5rem;
}

#product1 .pro-container {
    display: flex;
    justify-content: space-between;
    padding-top: 5px;
    flex-wrap: wrap;
    padding-left: 2rem;
    padding-right: 2rem;
}

#product1 .pro {
    width: 31%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
}

#product1 .pro:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.08);
}

#product1 .pro img {
    width: 100%;
    border-radius: 20px;
}

#product1 .pro .des h5 {
    padding-top: 7px;
    color: #555;
    font-size: 20px;
}

#product1 .pro .des h4 {
    padding-top: 7px;
    font-size: 25px;
    font-weight: 700;
    color: #00df82;
}

/* acheviments section */
.section2 {
    text-align: center;
    margin-top: 5px;

}

.section2 h2 {
    font-size: 45px;
    margin-bottom: 10px;
    color: #00df82;
}

.section2 h5 {
    font-size: 25px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
    max-width: 1300px;
    margin: 0 auto;

}

.image-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    /* Space between images */
    margin-top: 20px;
    margin-bottom: 20px;
}

.image-row img {
    width: 20rem;
    height: auto;
    border-radius: 10px;
}

@media (max-width:1024px) {

    .section h2 {
        font-size: 40px;
    }

    .section p {
        font-size: 15px;
    }

    .section2 h2 {
        font-size: 40px;
    }

    .section2 p {
        font-size: 20px;
    }

}

@media (max-width:799px) {
    #product1 .pro-container {
        justify-content: center;
    }

    #product1 .pro {
        margin: 15px;
    }

    .section2 {
        border-right: none;
        margin-bottom: 20px;
    }

    .section p {
        font-size: 20px;
    }

    .image-row img {
        width: 45%;
        margin-left: 0rem;
    }
}

@media (max-width:477px) {
    #product .pro {
        width: 100%;
    }
}