
    body {
      margin: 0;
      padding: 0;
      background: #ffffff;
      font-family: Avenir, "Century Gothic", Futura, "Segoe UI", sans-serif;
    }

    .container-padding {
      padding-left: 90px;
      padding-right: 90px;
      box-sizing: border-box;
    }

    .hero {
      position: relative;
      width: 100%;
      height: 275px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      overflow: hidden;
      background-image: url('img/Header-bkg.png'); 
      background-repeat: no-repeat;
    }
    
    .hero-inside {
      position: relative;
      width: 100%;
      height: 118px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      overflow: hidden;
      background-image: url('img/Header-inside.png'); 
      background-repeat: no-repeat;
    }
    

    .hero-text {
      max-width: 900px;
      color: black;
      box-sizing: border-box;
      margin-bottom:95px;
    }

    .hero-heading {
      font-size: 36px;
      line-height: 32px;
      margin: 0 0 12px 0;
      font-weight: normal;
    }

    .hero-text p {
      font-size: 30px;
      line-height: 35px;
      margin: 0;
    }

    .hero-inside-text {
      max-width: 900px;
      color: black;
      box-sizing: border-box;
    }

    .hero-inside-heading {
      font-size: 16px;
      line-height: 24px;
      margin: 10px 0 0 0;
      font-weight: normal;
      text-transform: uppercase;
      color:#999;
    }

    .hero-inside-text p {
      font-size: 30px;
      line-height: 30px;
      margin: 0;
      text-transform: uppercase;
      color:#3E2690;
    }
    
 .homelink{ 
 	position:absolute; 
 	top: 90px; 
 	left: 1210px; 
 	width: 45px; 
 	height:30px; 
 	display:block;
 	}
    
ul{
	padding-left:20px;
	}


    .wrapper {
      padding: 20px 90px 20px 90px;
      max-width: 100%;
      box-sizing: border-box;
    }


    h1 {
      font-size: 30px;
      line-height: 40px;
      margin: 0 0 16px 0;
      font-weight: normal;
      text-transform: uppercase;
      color:#3E2690;
    }

    h2 {
      font-size: 30px;
      line-height: 40px;
      margin: 0 0 16px 0;
      font-weight: normal;
      text-transform: uppercase;
    }

    h3 {
      font-size: 24px;
      font-style: italic;
      line-height: 34px;
      margin: 0 0 20px 0;
      font-weight: normal;
      color: #666;
    }

    p, li {
      font-size: 16px;
      line-height: 24px;
      margin: 0 0 20px 0;
    }
    
  .close li {
      margin: 0 0 0 0;
    }

    .content-columns {
      display: flex;
      gap: 30px;
      justify-content: center;
      margin-bottom: 20px;
    }

    .column {
      flex: 1 1 0;
      min-width: 200px; /* ensures reasonable minimum width */
      max-width: 374px; /* prevents columns from getting too wide */
      box-sizing: border-box;
    }

    .image-block {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .image-block img {
      max-width: calc((100% - 40px) / 5);
      flex: 1 1 calc((100% - 40px) / 5);
      height: auto;
      object-fit: cover;
    }
    
    
    
    .footer{
    	border-top: 1px solid #ccc;
    	}
    	
    .footer p:first-child{
    	margin-top:10px;
    	}
    
	.hidlink{
		text-decoration:none;
		color:black;
		}

	.hidlink:hover{
		text-decoration:underline;
		color:#5551a2;}

	.unhidlink{
		text-decoration:none;
		color:#5551a2;
		}

	.unhidlink:hover{
		text-decoration:underline;
		color:#5551a2;}



    .use-case-button {
  display: inline-block;
  background-color: white;
  border: 1px solid #ccc; /* light grey border */
  color: #666; /* mid grey text */
  text-decoration: none; /* remove underline */
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px; /* optional rounded corners */
  transition: background-color 0.2s ease, color 0.2s ease;
}

.use-case-button:hover {
  background-color: #f0f0f0; /* light grey background on hover */
  color: #333; /* dark grey text on hover */
}


 .content-section {
      display: none;
    }
    
    
    

/* Overlay background */
.overlay {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Centered image */
.overlay-content {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 10px #000;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}






    @media (max-width: 767px) {
      .container-padding {
        padding-left: 20px;
        padding-right: 20px;
      }

      .hero-heading {
        font-size: 28px;
        line-height: 28px;
      }

      .hero-text p {
        font-size: 24px;
        line-height: 32px;
      }

      .wrapper {
        padding: 20px 20px;
      }

      h1.page-title {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 36px;
      }

      .content-columns {
        flex-direction: column;
      }

      .column {
        width: 100%;
        max-width: none;
      }

      p {
        font-size: 14px;
        line-height: 20px;
      }

      .image-block {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
      }

      .image-block img {
        flex: 0 0 auto;
        max-width: none;
        width: 150px;
      }
      

    }
