:root {
  --secondary-color: #c50000;
  --primary-color: #2e3192;
}

.contact-wrapper {
  width: 100%;
  min-height: 100vh;
}

.contact-container {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.6; /* This makes the text more readable */
}
.contact-container-hero-img {
  width: 100%;
}
.contact-container-hero-img img {
  width: 100%;
}
.contact-header {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  padding: 30px;
  background-color: rgb(248, 248, 248);
  line-height: 1.6; /* This makes the text more readable */
}
.contact-header {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}
.contact-container h2 {
  margin-top: 20px;
  color: #444;
}
.contact-container p {
  margin-bottom: 15px;
  color: #555;
}
.contact-form-container {
  background-color: #fff;
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contact-form-container .contact-info {
  font-size: 12px;
  margin-bottom: 20px;
  font-weight: 500;
}
.contact-form-container .contact-info a {
  text-decoration: none;
  color: #c5000c;
  font-weight: 600;
}
.contact-form-group {
  margin-top: 1rem;
  margin-bottom: 15px;
  margin-left: 15px;
  text-align: left;
}
.contact-form-header {
  padding: 0.5rem;
  width: 100%;
  text-align: left;
  background: #e7e7e7;
  font-weight: 500;
}
.contact-name-inputs {
  display: flex;
  justify-content: start;
  gap: 1rem;
}
.contact-name-inputs div {
  width: 100%;
}
.contact-name-inputs label {
  font-size: 10px;
  font-weight: 500;
  color: #cacaca;
}
.contact-form-group label {
  font-weight: 600;
  font-size: 12px;
}
.contact-phone-input-label {
  font-size: 10px;
  font-weight: 500;
  color: #cacaca;
  font-style: italic;
}
input {
  width: 35%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
label {
  display: block;
  margin-bottom: 5px;
}
input,
textarea,
input,
select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.contact-phone-input {
  display: flex;
  align-items: center;
  gap: 0rem;
}
select {
  width: 100%;
  border-radius: 4px 0 0 4px;
  appearance: auto;
  max-width: 100px;
}
.contact-required {
  color: red;
}
.contact-recaptcha {
  display: flex;
  align-items: center;
}
.contact-recaptcha label {
  margin-left: 10px;
}
input[type="submit"] {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
input[type="submit"] {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 16px;
}
input[type="submit"]:hover {
  opacity: 0.9;
}
.corporate-container {
  margin-top: 30px;
  text-align: left;
  font-family: Arial, sans-serif;
}
.corporate-info {
  margin-bottom: 10px;
  font-size: 14px;
}
.corporate-details p {
  margin: 5px 0;
  font-size: 14px;
}
.corporate-contact {
  color: red;
}
.corporate-link {
  color: red;
  text-decoration: none;
}

.corporate-link:hover {
  text-decoration: underline;
}
/* ------------CAPTURE-------------- */
.captcha-container {
  display: flex;
  align-items: center;
  border: 1px solid #d3d3d3;
  padding: 10px;
  width: 100%;
  max-width: 300px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}
.checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid #d3d3d3;
  margin-right: 10px;
  position: relative;
}
.checkbox:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: transparent;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.checkbox.checked:after {
  background-color: #4285f4; /* Google's blue color */
}
.captcha-text {
  font-size: 16px;
  color: #000;
}
.captcha-logo {
  margin-left: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.captcha-logo img {
  height: 25px;
}
.captcha-info {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
  text-align: right;
}
.captcha-info > span {
  font-size: 10px;
}
.captcha-privacy-terms {
  display: flex;
  justify-content: flex-end;
  font-size: 9px;
  color: #666;
}
.captcha-privacy-terms a {
  text-decoration: none;
  color: #4285f4;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .contact-form-container {
    padding: 0px;
  }
  .contact-name-inputs {
    display: block;
  }
  .contact-name-inputs label {
    margin-bottom: 1rem;
  }
}
