.Divition {
    width: 100%;
    /* height: 100vh; */
    /* border: 1px solid red; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* padding: 10px; */
    filter: blur(0px);
    /* background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));  */
}

/* ------------------Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 15vh;
    background-color: #444444; /* إضافة خلفية لتجنب الشفافية */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    padding: 0px 1vw;
    position: relative;
    top: 0;
    z-index: 1000;
}

.sec1 {
    width: 100%;
    /* height: 100vh; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    /* border: 1px solid red; */
    padding: 2% 0%;
}

.sec1 > .content{
    width: 70%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* border: 1px solid green; */
    padding: 1%;
}
.sec1 > .content > h2{
    width: 100%;
    background-color: #444;
    color: white;
    text-align: center;
    padding: 10px;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec1 > .content > .topdiv {
    width: 100%;
    height: 90%;
    /* border: 1px solid green; */
    margin-bottom: 10px;
    overflow-y: auto; /* هنا السحر 🪄 */
}

/* تحسين شكل الـ Scrollbar */
.sec1 > .content > .topdiv::-webkit-scrollbar {
    width: 8px;
}

.sec1 > .content > .topdiv::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 5px;
}

.sec1 > .content > .topdiv::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

/* تنسيق الـ Accordion */
.accordion {
    width: 100%;
    
    border-top: 1px solid #ccc;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
}

.accordion-button {
    width: 100%;
    background-color: #444;
    color: white;
    text-align: right;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-button::after {
    content: "+";
    font-size: 20px;
    margin-left: 10px;
}
#sec1EN .accordion-button::after {
    margin-right: 10px;
}

.accordion-button.active {
    background-color: #222;
}

.accordion-button.active::after {
    content: "-";
}

.accordion-content {
    display: none;
    height: auto;
    background-color: #f9f9f9;
    padding: 10px;
    border-right: 2px solid #444;
    padding-right: 3%;
}
#sec1EN .accordion-content {
    border-left: 2px solid #444;
    padding-left: 3%;
}
.accordion-content > p {
    width: 50%;
    text-align: start;
}
.accordion-content > ul {
    text-align: start;
    /* border: 1px solid red; */
    list-style: decimal;
}
.accordion-content > ul > li {
    padding-right: 3px;
}
#sec1EN .accordion-content > ul > li {
    padding-left: 3px;
}


.sec1 > .content > .downdiv {
    width: 100%;
    /* border: 1px solid blue; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px 30px;
    padding: 1%;
}

.sec1 > .content > .downdiv > a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    background-color: #444444;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.5s;
}

.sec1 > .content > .downdiv > a:hover {
    background-color: #222222;
}

/* جعل الأزرار تتكدس عموديًا في الشاشات الصغيرة */
@media (max-width: 600px) {
    .sec1 > .content > .downdiv {
        grid-template-columns: 1fr;
    }
}



@media (max-width: 1000px) {

    .sec1 {
        padding: 0% 0%;
    }
    .sec1 > .content{
        width: 100%;
    }
    .sec1 > .content > h2{
        padding: 5px;
    }

}