<style>
    body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      background-color: #F6F5C9;
      color: #333;
    }

    .placementcontainer {
      height: 500px;
      width: 100%;
      padding: 30px 15px;
      background-color: #F6F5C9;
    }

    .text-center {
      text-align: center;
    }

    .sectionSubHeading {
      font-size: 26px;
      font-weight: 600;
      color: #002147;
      margin-bottom: 25px;
    }

    h4 {
      font-size: 20px;
      margin: 20px 0 10px;
      color: #003366;
      text-align: center;
    }

    .highlightsSectionRows {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px 24px; /* vertical & horizontal gap */
      margin-top: 15px;
    }

    .highlightsSectionSmall {
      width: 250px;
      height: 150px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background-color: #fff;
      padding: 12px;
      border-radius: 12px;
      text-align: center;
      transition: transform 0.3s ease;
      position: relative;
      z-index: 1;
    }

    .highlightsSectionSmall::before {
      content: "";
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      background: linear-gradient(to right, blue, yellow, red, yellow, blue);
      z-index: -1;
      border-radius: 14px;
      padding: 2px;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: destination-out;
      mask-composite: exclude;
    }

    .highlightsSectionSmall:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.12);
    }

    .highlightsSectionSmall h5 {
      font-size: 20px;
      color: #004080;
      margin: 0;
    }

    .highlightsSectionSmall h6 {
      font-size: 16px;
      color: #666;
      margin-top: 8px;
    }

    @media screen and (max-width: 768px) {
      .highlightsSectionRows {
        flex-direction: column;
        align-items: center;
        gap: 16px;
      }

      .highlightsSectionSmall {
        width: 80%;
      }
    }
  </style>