/* Hero Section */
.dgtl-banner {
  background: url('images/digital.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 30px 20px;
  box-sizing: border-box;
}


.digital-section {
      padding: 6px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .digital-section h2 {
      font-size: 32px;
      color: blue;
      margin-bottom: 20px;
    }

    .digital-section p {
      font-size: 18px;
      color: #555;
      margin-bottom: 25px;
    }

    .digital-section ul {
      margin-left: 20px;
      color: #001f3f;
      font-size: 18px;
    }

 @media (max-width: 768px) {
  .dgtl-banner {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    height: auto;
    padding-top: 60%;
    margin-bottom: 0;         /* 🔧 Remove extra margin */
    padding-bottom: 0;        /* 🔧 Remove extra padding */
  }

  .digital-section {
    margin-top: -30px;        /* 🔧 Slight pull-up to remove visible gap */
  }
}

  .digital-section h2 {
    font-size: 24px;
  }

  .digital-section p,
  .digital-section ul {
    font-size: 16px;
  }

  .digital-section ul {
    margin-left: 0;
    list-style-position: inside;
  }
