/* contact form section styles */
.contact-form-section {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.contact-form-title {
  color: #1761a0;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.contact-form-box {
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(127, 174, 46, 0.06);
  border: 1.5px solid #c6e17e;
  max-width: 100;
}
.contact-label {
  font-weight: 500;
  color: #222;
  font-size: 1.05rem;
}
.contact-form-box .form-control[type="file"] {
  background: #fff;
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
}
.contact-form-request-section {
  border-radius: 8px;
  border: 1.5px solid #c6e17e;
}
.contact-request-title {
  font-size: 1.2rem;
  color: #222;
}
.contact-message-area {
  min-width: 100%;
  max-width: 100%;
  min-height: 180px;
  border-radius: 6px;
  border: 1.5px solid #7fae2e;
  font-size: 1.1rem;
  background: #fff;
}
.contact-submit-btn {
  background: linear-gradient(90deg, #9fd632 0%, #79b40e 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(127, 174, 46, 0.08);
  transition: background 0.18s, color 0.18s;
  width: 250px;
  margin: 0 auto;
}
.contact-submit-btn:hover,
.contact-submit-btn:focus {
  background: #7fae2e;
  color: #fff;
}
@media (max-width: 700px) {
  .contact-form-box {
    max-width: 100%;
    padding: 1rem;
  }
  .contact-form-section {
    max-width: 100%;
  }
}

.contact-details {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  padding: 0 1rem;
}
.contact-block {
  margin-bottom: 2.5rem;
  text-align: center;
}
.contact-block-title {
  color: #1761a0;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}
.contact-block-main {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin: 0.5rem 0 0.5rem 0;
}
.contact-block-desc {
  color: #222;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.contact-person-list {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  align-items: flex-start;
  margin: 2rem 0 0 0;
}
.contact-person {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}
.contact-person-img {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  /* No border or border-radius, just a placeholder for your image */
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-person-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* No border-radius */
}
.contact-person-main {
  font-size: 1.08rem;
  font-weight: 500;
  color: #222;
}
.contact-person-email {
  font-size: 1rem;
  color: #1761a0;
  font-weight: 500;
  margin-top: 0.1rem;
}
.contact-mail-list {
  list-style: disc inside;
  text-align: left;
  margin: 1.2rem auto 0 auto;
  max-width: 500px;
  padding-left: 0;
}
.contact-mail-main {
  font-weight: 700;
  color: #222;
  font-size: 1.08rem;
  word-break: break-all;
}
@media (max-width: 700px) {
  .contact-details {
    max-width: 100%;
    padding: 0 0.5rem;
  }
  .contact-person {
    flex-direction: column;
    align-items: center;
  }
  .contact-person-list {
    gap: 1.2rem;
  }
  .contact-person-img {
    width: 70px;
    height: 70px;
  }
}
