
body {
  background-color: #f4f7fb;
  font-family: "Poppins", sans-serif;
}

.contact-header {
  background: linear-gradient(135deg, #007bff 0%, #00c6ff 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.contact-header h1 {
  font-weight: 700;
  font-size: 2.5rem;
}

.contact-header p {
  font-size: 1.1rem;
  margin-top: 10px;
}

.contact-section {
  max-width: 1100px;
  margin: 50px auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 40px;
}

.info-box {
  background: #f8faff;
  border-left: 4px solid #007bff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.info-box i {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 10px;
}

.info-box h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.info-box p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0;
}

form .form-control {
  border-radius: 8px;
  padding: 12px;
}

.btn-submit {
  background-color: #007bff;
  color: white;
  border-radius: 30px;
  padding: 10px 25px;
  border: none;
  font-weight: 600;
}

.btn-submit:hover {
  background-color: #0056b3;
}

.map-container {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}