.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  max-width: 1000px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
}

.contact-map {
  flex: 1;
  min-height: 400px;
}

.contact-form {
  flex: 1;
  padding: 40px;
}

.contact-form h2 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: bold;
}

.contact-info p {
  margin: 5px 0;
  color: #333;
}

.contact-form form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.contact-form textarea {
  resize: none;
  height: 100px;
}

.contact-form button {
  padding: 12px;
  background: #ff5e62;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #e74c3c;
}

/* Responsive */
@media(max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-map {
    height: 250px;
  }
}
