#contact {
  padding: 60px 20px;
  font-family: "Arial", sans-serif;
  background-color: #e6f2f8;
  color: #333;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.contact-left {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-block h3 {
  font-size: 24px;
  color: #007ba0;
  margin-bottom: 10px;
}

.contact-block p {
  font-size: 16px;
  line-height: 1.6;
  margin: 8px 0;
}

.contact-block i {
  color: #007ba0;
  margin-right: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #007ba0;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #005f73;
  transform: scale(1.1);
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 10px;
}

.contact-right {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-right h2 {
  font-size: 30px;
  color: #007ba0;
  margin-bottom: 30px;
  text-align: center;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-right form input,
.contact-right form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-right form input:focus,
.contact-right form textarea:focus {
  border-color: #007ba0;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 160, 0.3);
}

.contact-right form button {
  background: #007ba0;
  color: #fff;
  border: none;
  padding: 14px 25px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center;
  width: 50%;
}

.contact-right form button:hover {
  background: #005f73;
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-right {
    margin-top: 30px;
    padding: 40px 25px;
  }

  .contact-right form button {
    width: 70%;
  }
}
