.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
    min-height: 70vh;
    background-color: #f9f9f9;
    border-radius: 15px;
    margin: 20px 0;
}

.about-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 3px solid #fff;
    object-fit: cover;
}

.about-text {
    font-size: 19px;
    line-height: 1.8;
    color: #444;
    max-width: 700px;
    margin-bottom: 20px;
    font-family: 'Tajawal', sans-serif;
}

@media (max-width: 480px) {
    .about-container {
        padding: 28px 14px;
        margin: 12px 0;
        min-height: auto;
    }

    .about-logo {
        width: 110px;
        height: 110px;
        margin-bottom: 18px;
    }

    .about-text {
        font-size: 15px;
        line-height: 1.7;
    }
}
