.about-section {
    padding: 20px 0;
 
}
.container-about {
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-content-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    transition: transform 0.3s ease-in-out;
}
.about-content-wrapper:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 10px rgba(255, 255, 255, 0.7);
}
.about-content {
    flex: 1;
}
.about-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.about-images img {
    width: 400px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.about-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.features {
    margin: 10px 0;
}
.feature {
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.ulfeatures  {
    list-style-type: none; 
    padding: 5px; 
    margin: 5px; 
    font-size: 18px;
}


/* تحسين التصميم للشاشات الصغيرة */
@media (max-width: 768px) {
    .about-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-images {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .about-images img {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .about-images img {
        width: 90%;
    }
    .feature {
        font-size: 14px;
    }
}


/*  */
.collapsible {
    background-color: #000000;
    color: white;
    cursor: pointer;
    padding: 10px;
    width: 60%;
    border: none;
    text-align: right;
    outline: none;
    font-size: 20px;

 
  }
  
  .active, .collapsible:hover {
    background-color: #ff305b;
  }
  
  .collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    margin-right: 5px;
  }
  
  .active:after {
    content: "\2212";
  }
  
  .content {
    width: 60%;
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f1f1f1;
    margin-bottom:20px;
    font-size: 20px;
    margin-left: 5px;
    margin-right: 5px;
  }