* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 18px;
  color: #000;
}
h2 {
  font-size: 26px;
  margin: 35px 0 20px;
  color: #164b62;
}
.row {
  max-width: 1000px;
  margin: auto;
  padding: 30px 20px;
  border-bottom: 2px solid #164b62;
}
section img {
  width: 100%;
  height: auto;
}
.row.grid-1 h2 {
  margin-top: 0;
}

.row.grid-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
}

.row.grid-2 {
  display: grid;
  grid-template-columns: 1fr 3.5fr;
  gap: 5%;
  align-items: center;
}

section {
  margin-bottom: 50px;
}

.row.grid-1 .col-1 {
  background: #14465d;
  border-radius: 20px;
  display: block;
  padding: 30px;
  color: #fff !important;
}

.row.grid-1 .col-1 * {
  color: #fff;
}

p.contact {
  margin: 20px 0;
  font-weight: 700;
}
form#verification-form p {
    font-weight: bold;
    margin: 20px 0 10px;
}

form button {
    background: #14465d;
    border: none;
    padding: 5px 10px;
    border-radius: 100px;
    font-size: 15px;
    color: #fff;
}

input#user-answer {padding: 0px 5px;}
p.contact a {
  color: #164b62;
}

.row.grid-2 h2 {
  margin-top: 0;
}
.contact {
    display: none;
}
@media (max-width: 767px) {
    form button {
        width: 100%;
       
        margin-top: 11px;
    }
  .row.grid-2,
  .row.grid-1 {
    grid-template-columns: 1fr;
    gap: 30px;  }
  * {
    font-size: 14px;
  }
  h2 {
    font-size: 22px;
    margin: 25px 0 20px;
  }
  .row.grid-2 img{
    max-width: 120px;
    display: block;
    margin: auto;
  }
}

/* Add your existing CSS code here */

/* Captcha Box Styles */
#captcha-box {
  margin-top: 20px;
}

#captcha-image {
  margin-bottom: 10px;
}

button {  
  background: #14465d;
    border: none;
    padding: 5px 10px;
    border-radius: 100px;
    font-size: 15px;
    color: #fff;
}
div#captcha-box {
  display: grid;
  grid-template-columns: repeat(5, auto); /* Default to 5 columns */
  align-items: center;
  column-gap: 10px;
  justify-content: start;
}
.captcha-sec p {
    font-weight: bold;
    margin: 20px 0 10px;
}

/* Responsive styles for medium screens (e.g., tablets) */
@media (max-width: 768px) {
  div#captcha-box {
      grid-template-columns: repeat(2, auto); /* 3 columns for tablets */
      column-gap: 8px; /* Adjust gap if needed */
  }
}
