@charset "utf-8";
/* CSS Document */


body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  background-image: url("images/tech-bkg.jpg");	
  background-color: #000000;
  font-family: Arial, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1 {
  font-family: Segoe UI, Arial, san-serif;
  color: #084F6A;
  font-size: clamp(1.2rem, 4vw, 1.50rem);
  font-weight: normal;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

p {
	margin-top: .5rem;
	margin-bottom: .5rem;
}

ul {
	margin-top: .3rem;
}

ul li {
  margin-bottom: 0.5rem;
}

.main-content {
/*  width: 100%;*/
  width: clamp(375px, 100%, 1024px);	
  max-width: 1024px;
  min-width:375px;	
  height: 1050px;
  background-image: url("images/translucent-bkg.png");
  margin: 0px auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  font-size: clamp(.85rem, 2vw, .95rem);
}

.banner {
  height: 120px;
  padding: 20px 15px 0 20px;
  margin-bottom: 0px;	
  box-sizing: border-box;
  justify-content: left;
  background-color: #002D54;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.9);
}

.tagline {

  min-height: clamp(40px, 40vh, 90px);	
/*  width: 100%;
  height: 90px;
*/ 
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: Segoe UI, Arial, sans-serif;
  font-size: clamp(1.2rem, 4vw, 1.75rem);
  font-weight: 600;	
  background-color: none;
}

.button {

  min-height: clamp(40px, 40vh, 55px);		
/*  width: 100%;
  height: 55px;
*/  margin-bottom:22px;	
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Segoe UI, Arial, sans-serif;
  font-size: 0.95rem;
}

.whatis {

  min-height: clamp(175px, 40vh, 175px);
  padding: clamp(5px, 4vw, 15px);
/*  width: 100%;
  height: 175px;
  padding: 5px 90px 5px 30px;  	*/
  margin-bottom:22px;	
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  display: flex;
/*  gap: 20px;*/
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  background-color: #e8e8e8;

}

.whatiscolumn {
  flex: 1;
  min-width: 250px; /* Prevents columns from shrinking too small */
  padding: 10px;

}

.quicktour-text-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px;
}

.icon-line {
  display: flex;
  align-items: center;
}


.benefits {
/*  width: 100%;*/
/*  height: 240px;*/
/*  padding: 5px 90px 5px 30px;  */	
  padding-top: clamp(5px, 4vw, 15px);
  padding-right: clamp(5px, 4vw, 100px);
  padding-bottom: clamp(5px, 4vw, 15px);
  padding-left: clamp(5px, 4vw, 15px);
  margin-bottom:22px;	
  border-bottom: 1px solid #ccc;

  box-sizing: border-box;
/*  display: flex;*/
  align-items: center;
  justify-content: center;
  background-color: #e8e8e8;
}

.support {
/*  width: 100%;*/
  height: 190px;
  margin-bottom:22px;	
  border-bottom: 1px solid #ccc;
  padding: clamp(5px, 4vw, 15px);
  box-sizing: border-box;
/*  display: flex;*/
  align-items: center;
  justify-content: center;
  background-color: #e8e8e8;
}
.avd-button {
      display: inline-block;
      width: 250px;
      padding: 10px 0;
      background-color: #FFE697;
      color: #000;
      text-align: center;
      text-decoration: none;
      border: 1px solid #707070;
      border-radius: 10px;
      font-family: Segoe UI, Arial, sans-serif;
      font-size: 16px;
	  font-weight: bold;
      cursor: pointer;
      transition: border-color 0.2s ease-in-out;
    }

.avd-button:hover {
      border-color: red;
    }

.two-col-list {
  columns: 2;           /* split into 2 columns */
  column-gap: 1.7rem;   /* spacing between columns */
  list-style-position: inside;
  padding: 0;
  margin-left: 20px;
}

.contentindent {
	margin-left:10px;
}

.question {
	font-weight:bold;
	font-size:1.1rem;
	margin-bottom:0px;
	
}


.contact-list {
  list-style: none;
  padding: 0;
  margin-left: 20px;
	margin-top:15px;
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-list .icon {
  margin-right: 8px;
  font-size: 1.1rem;
}


.footer {
	font-size:0.75rem;
	color:#ffffff;
	padding: 5px 20px 20px 20px;
	display: flex;
  justify-content: space-between;
}
.footer .left {
  text-align: left;
}

.footer .right {
  text-align: right;
}

/* Responsive minimum width */
@media (max-width: 430px) {
  .main-content {
    width: 100%;
  }
}

