.about-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}
.about-img { width: 220px; }
.about-text {
    max-width: 850px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-radius: 30px;
}

.feature-item { 
    padding: 10px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon { 
    width: 60px; 
    height: auto; 
    margin: 0 auto 15px;
    display: block;
}

.feature-item h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: #000; }
.feature-item p { font-size: 0.95rem; line-height: 1.6; color: #555; max-width: 300px; margin: 0 auto; }

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .about-text {
        text-align: justify;
        padding: 0 20px;
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-img {
        width: 150px;
        margin: 0 auto;
    }
}

@media (min-width: 768px) {
    .about-text {
        text-align: justify;
        padding: 0 20px;
        font-size: 1rem;
        line-height: 1.6;
    }
}