.about-wrap {
    background: #031747;
    color: #ffffff;
  }
  
  .about-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    border-radius: 22px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(181,226,255,.18);
    box-shadow: 0 18px 50px rgba(0,0,0,.22);
  }
  
  .about-title {
    font-weight: 900;
    margin-bottom: 18px;
  }

  .about-subtitle {
    font-weight: 300;
  }
  
  .about-text {
    color: rgba(255,255,255,.88);
    line-height: 1.75;
    margin-bottom: 16px;
  }
  
  /* Image section */
  .about-image-wrap {
    position: relative;
    max-width: 900px;
    margin: 28px auto 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(181,226,255,.14);
    box-shadow: 0 18px 50px rgba(0,0,0,.18);
  }
  
  .about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Subtle blend overlay */
  .about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      120deg,
      rgba(3,23,71,.70),
      rgba(3,23,71,.18),
      rgba(3,23,71,.65)
    );
    pointer-events: none;
  }
  
  /* Responsive */
  @media (max-width: 767.98px) {
    .about-card {
      padding: 24px;
    }
  }
  
  .about-card + .about-card {
    margin-top: 2rem;
  }
  