.about-us {
    /* border: 1px solid red; */
    width: 100%;
    min-height: 100vh;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    margin-top: 160px;
}
.about-us > .sec1 {
    width: 100%;
    /* height: 400px; */
    /* border: 1px solid blue; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 100px;
}
.about-us > .sec1 .text {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    text-align: start;
    /* border: 1px solid red; */
}
.about-us > .sec1 .text h1 {
    font-size: 2.5rem;
    color: #6518ff;
    margin-bottom: 20px;
}
.about-us > .sec1 .text p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.5;
}
.about-us > .sec1 .image {
    width: 45%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-us > .sec1 .image > div {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about-us > .sec2 {
    width: 100%;
    /* height: 400px; */
    /* border: 1px solid blue; */
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 100px;
}
.about-us > .sec2 .text {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    text-align: start;
    /* border: 1px solid red; */
}
.about-us > .sec2 .text h2 {
    font-size: 2.5rem;
    color: #6518ff;
    margin-bottom: 20px;
}
.about-us > .sec2 .text p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.5;
}
.about-us > .sec2 .image {
    width: 45%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-us > .sec2 .image > div {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .about-us > .sec1,
    .about-us > .sec2 {
        flex-direction: column;
        padding: 0 20px;
        text-align: center;
        margin: 30px 0;
        
    }

    .about-us > .sec1 .text,
    .about-us > .sec2 .text,
    .about-us > .sec1 .image,
    .about-us > .sec2 .image {
        width: 100%;
    }

    .about-us > .sec1 .text,
    .about-us > .sec2 .text {
        align-items: center;
    }

    .about-us > .sec1 .text h1,
    .about-us > .sec2 .text h2 {
        font-size: 2rem;
    }

    .about-us > .sec1 .text p,
    .about-us > .sec2 .text p {
        font-size: 1rem;
        text-align: center;
        font-weight: 700;
    }

    .about-us > .sec1 .image > div,
    .about-us > .sec2 .image > div {
        width: 100%;
        height: 250px; /* تضبيط ارتفاع الصورة للموبايل */
    }

    .about-us .sec1 {
        flex-direction: column-reverse;
    }
    .about-us .sec2:nth-child(3) {
        flex-direction: column-reverse;
    }
}
