* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #eef2f7;
  }
  
  .about-wrapper {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
  }
  
  .about-box {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
  }
  
  .text-section {
    flex: 1;
    padding: 30px;
  }
  
  .text-section h1 {
    font-size: 32px;
    color: #1e3a8a;
    margin-bottom: 16px;
  }
  
  .text-section p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .text-section ul {
    list-style: none;
  }
  
  .text-section ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
  }
  
  .image-section {
    flex: 1;
    display: flex;
    
    

    
  }
  
  .image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 0px;
  }