/* About Us Section */
.about-us-section {
    background-color: rgba(0, 43, 91, 0.4);
    padding: 80px 20px;
    border-radius: 16px;
    margin-bottom: 40px;
  }
  .about-us-section h2 {
    font-size: 2.4rem;
    text-align: center;
    color: #00d4ff;
    margin-bottom: 1rem;
  }
  .about-us-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #dff6ff;
    max-width: none;
    width: 100%;
    margin: 0;
    text-align: center; /* center the text */
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .about-us-section {
      padding: 50px 15px;
      margin-bottom: 30px;
    }
    .about-us-section h2 {
      font-size: 2rem;
    }
    .about-us-section p {
      font-size: 1rem;
    }
  }
  