

.about-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
}
.about-features-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
}

.about-item {
    flex: 1 1 45%;
    min-width: 300px;
    /* padding: 1.5rem; */
    border-radius: 5px;
    box-sizing: border-box;
}

.about-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

.about-item h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ---------- Responsive Breakpoints ---------- */
@media (max-width: 992px) {
    .about-item h3 {
        font-size: 2rem;
    }
    .about-item p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-features {
        flex-direction: column;
        text-align: center;
        /* flex-direction: column-reverse; */
    }
    .about-features-2 {
        flex-direction: column;
        text-align: center;
        flex-direction: column-reverse;
    }

    .about-item {
        flex: 1 1 100%;
        padding: 1rem;
    }

    .about-item h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .about-item h3 {
        font-size: 1.5rem;
    }
    .about-item p {
        font-size: 0.9rem;
    }
}
