@import url('https://fonts.googleapis.com/css2?family=Libertinus+Sans:ital,wght@0,400;0,700;1,400&display=swap');

/* --------- Contact Form --------- */

/* --------- Contact Form --------- */
.contact-form {
  max-width: 600px;
  margin: 3rem auto 5rem auto;
  background: #fff;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgb(209 209 209 / 40%);
 
  color: #0d2b5e;
}

.contact-right h2,
.contact-right h3 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  color: rgb(18, 71, 136);
}


.contact-right h3.contact-highlight {
  color: #315ea0;
  font-weight: 300;
  font-size: 2rem;
  
}

/* Make all form fields full width and stacked */
.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-bottom: 1.2rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #b9b9b9;
  border-radius: 8px;
  font-family: inherit;
  outline-offset: 2px;
  transition: border-color 0.3s ease;
}

/* Focus effect */
.contact-form input:focus,
.contact-form select:focus {
  border-color: #56d0aa;
  outline: none;
}

/* Style select dropdown arrow */
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%236c6c6c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px 8px;
  padding-right: 40px;
  gap: 2px;
  cursor: pointer;
}

/* Checkbox row styling */
.contact-form .checkbox-row {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #0d2b5e;
}

.contact-form .checkbox-row label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.contact-form .privacy-note {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.contact-form .privacy-note a {
  color: #56d0aa;
  text-decoration: none;
}

.contact-form .privacy-note a:hover {
  text-decoration: underline;
}

/* Submit button styling */
.contact-form .submit-btn {
  background-color: #0d2b5e;
  color: white;
  border: none;
  width: 100%;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form .submit-btn:hover {
  background-color: #315ea0;
}
