/* Contact Section */
.contact_block {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 4rem 2rem;
  box-sizing: border-box;
}

.contact-grid {
  width: 50%;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  box-sizing: border-box;
}

.contact-form {
  color: #107bab;
  padding: 1.5rem 2rem 2rem;
  /* reduced top padding */
  border-radius: 12px;
  display: flex;
  text-align: center;
  flex-direction: column;
  width: 100%;
}

.contact-form h2 {
  color: #107bab;
  text-align: center;
  margin: 0 0 1rem 0;
  /* remove top margin, reduce bottom margin */
  font-size: 1.5rem;
  line-height: 1.2;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 1rem;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  padding: 0.75rem;
  font-size: 1rem;
  background-color: #0c809b;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0b778f;
}


.contactBtn {
  width: 20%;
  margin-left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
  padding: 15px;
  background-color: #00354d;
  border: none;
  color: #ffffff;
  font-size: 1.3em;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 0 5px #0ff;
}
.contactBtn:hover {
  box-shadow: 0 0 20px #0ff, 0 0 40px #0ff;
}