.about_banner {
    background-image: url("/images/banner.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 1rem;
    overflow: hidden;
}


.about_title {
    color: #FFFFFF;
    font-size: 29px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 23px;
    position: relative;
    text-align: center;
    padding-bottom: 23px;
    text-transform: uppercase;
}

.about_title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #58FF88;
    /* Border color */
    border-radius: 3px;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.about {
    background-color: #131A24;
    color: #fff;
  }
  
  .text-container {
    display: flex;
    justify-content: center;
    align-items: center;
    
    padding: 80px 50px;
  }
  
  .text-box {
    background-color: #2b2b3c;
    border-radius: 12px;
    padding: 40px;
    max-width: 1200px;
    line-height: 1.8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .text-box p {
    margin-bottom: 20px;
  }
  