.hero-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px 0;
  height: 450px;
  background: #f5f5f5;
  background-image:linear-gradient(rgba(22, 85, 156, 0.7), rgba(22, 85, 156, 0.7)), url('../images/shakinghands.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}

.contact-text{
    text-align: center;
    font-size: 60px;
    color: aliceblue;
}


/* Left and right contact in contact US */
.contact-section {
  padding: 100px 20px;
  background-color: #f9f9f9;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 7.5rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

.contact-form,
.contact-info-box {
  flex: 1 1 480px;
  width: 100%;
  max-width: 70%;
  align-content: center;
}

.contact-form h2,
.contact-info-box h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #333;
  word-wrap: break-word;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: none;
}

.contact-form textarea {
  min-height: 180px;
}

.contact-btn {
  background-color: #6495ED;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #5178c0;
}

.contact-info-box p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #444;
}

.map-container {
  width: 100%;
  max-width: 37.5rem;
  height: 28.125rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0,0,0,0.15);
  margin-top: 20px;
}

@media (max-width: 425px) {
  .contact-text {
    font-size: 40px;
  }
  .contact-info-box h2{
    font-size: 1.5rem;
  }
  .contact-form,
  .contact-info-box {
    flex: 1 1 480px;
    width: 100%;
    max-width: 100%;
  }
}