.contact-wrapper {
  display: flex;
  justify-content: space-around;
  margin: 40px;
  gap: 50px;
  background-color: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-left {
  width: 50%;
}

.contact-left h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-left p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.contact-info2 .info {
  margin-bottom: 20px;
}

.contact-info2 strong {
  font-size: 1.1rem;
}

.contact-info2 p {
  font-size: 0.9rem;
  margin-top: 5px;
}

.contact-info2 a {
  color: black;
  text-decoration: none;
  text-decoration: none;
  word-break: break-word;
}

.contact-info2 a:hover {
  text-decoration: underline;
  color: rgb(219, 12, 12);
}

.contact-right {
  width: 35%;
  padding: 15px;
  background-color: #fff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.contact-right h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-right form {
  display: flex;
  flex-direction: column;
}

.contact-right label {
  font-size: 1rem;
  font-weight: 350;
  margin-bottom: 5px;
}

.contact-right input,
.contact-right textarea {
  margin-bottom: 20px;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.contact-right input:focus,
.contact-right textarea:focus {
  outline: none;
  border-color: #4d94ff;
}

.contact-right button {
  padding: 10px 20px;
  background-color: #4d94ff;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-right button:hover {
  background-color: #3968b3;
}

.map iframe{
  width: 40%;
  border-radius: 10px;
  margin-top: 10px;
}

input:invalid:focus, textarea:invalid:focus {
  border-color: #e74c3c;
}

input:invalid:required:focus, textarea:invalid:required:focus {
  background-color: #f8d7da;
}
