 
   .db-banner {
    background: url('images/db-management.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
  }

  .db-overlay {
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .db-content {
    color: #ffffff;
    padding: 20px;
    max-width: 800px;
  }

  .db-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .db-content p {
    font-size: 1.3rem;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .db-content h1 {
      font-size: 1.3rem;
    }
    .db-banner{
      height: 30vh;
    }

    
  }

     
    



.db-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .db-section h2 {
      font-size: 32px;
      color: blue;
      margin-bottom: 20px;
    }

    .db-section p {
      font-size: 18px;
      color: #555;
      margin-bottom: 25px;
    }

    .db-section ul {
      margin-left: 20px;
      color: #001f3f;
      font-size: 18px;
    }

    @media (max-width: 768px) {
      .db-banner {
        padding: 60px 15px;
        background-position: center top;
      }

      .db-section h2 {
        font-size: 24px;
      }

      .db-section p, .db-section ul {
        font-size: 16px;
      }

      .db-section ul {
        margin-left: 0;
        list-style-position: inside;
      }
    }