.form-container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 50px 20px; */
  background-color: white;
  padding-bottom: 4%;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.contact-form {
  width: 100%;
  margin-right: 5%;
  float: left;
}

.form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.form-group {
  width: 48%;
  background: #e8e8e8;
  overflow: hidden;
}

.form-group-discuss {
  width: 33%;
  background: #e8e8e8;
  overflow: hidden;
}

.full-width {
  width: 100%;
}

/* .form-control {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 2px solid #ccc;
  font-size: 16px;
  background-color: transparent;
  transition: border-color 0.3s ease, border-width 0.3s ease;
} */

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.42);
  /* font-size: 1rem; */
  font-weight: 400;
  background-color: #f0f0f0;
  transition:
    border-color 0.3s ease,
    border-width 0.3s ease;

  border-radius: 0px;
}

/* Animation on focus */
.form-control:focus {
  /* border-bottom: 2px solid #007bff; */
  outline: none;
  transition: border-bottom 0.4s ease-in-out;
  background-color: #f5f5f5;
}

/* Input labels animation */
.form-control::placeholder {
  color: #999;
  transition: color 0.2s ease;
}

.form-control:focus::placeholder {
  color: #007bff;
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.char-count {
  text-align: right;
  font-size: 12px;
  color: #999;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.submit-btn {
  /* margin-right: 2%;
  margin-top: 20px; */
  padding: 12px 30px;
  /* float: left; */
  background-color: #004f87;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #007bff;
}

.privacy-policy {
  font-size: 12px;
  color: #999;
  margin-top: 20px;
}

.privacy-policy a {
  color: #007bff;
  text-decoration: none;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

/* Right-side information section */
.info-section {
  width: 40%;
  float: right;
}

.info-section h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.info-section p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.info-section a {
  color: #007bff;
  text-decoration: none;
}

.info-section a:hover {
  text-decoration: underline;
}

.info-section ul {
  list-style: none;
  padding: 0;
}

.info-section ul li {
  margin-bottom: 10px;
}

.info-section ul li a {
  color: #333;
  text-decoration: none;
}

.info-section ul li a:hover {
  text-decoration: underline;
}

/* Clearfix for floats */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Hover effect for form elements */
.form-control:hover {
  border-bottom: 1px solid rgba(0, 0, 0, 0.87);
}

.checkbox-group input:checked + label {
  color: #e74c3c;
  transition: color 0.3s ease;
}

/* Styling for the div with the class 'info-box' */
.info-box {
  padding: 15px; /* Space inside the box */
  margin: 20px auto; /* Centering with some space around */
  max-width: 480px; /* Limit the width */
}

/* Styling for the header inside the info-box */
.info-box h3 {
  font-size: 18px;
  color: #333; /* Darker text color */
  margin-bottom: 10px;
}

/* Styling for the paragraph */
.info-box p {
  font-size: 15px;
  line-height: 1.6; /* Better readability */
  color: #555; /* Slightly lighter text color */
}

/* Styling for the email link */
.info-box a {
  color: #007bff; /* Blue color for the link */
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline; /* Underline on hover */
}

@media only screen and (max-width: 768px) {
  .info-section {
    width: 100%;
    float: right;
  }

  .contact-form {
    width: 100%;
    margin-right: 5%;
    float: left;
    padding: auto;
  }

  .form-container {
    margin: 0 auto;
    padding: 50px 20px;
    background-color: white;
  }
}
