  .contact-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.contact-section h3 {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.contact-section h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #3498db;
}

.contact-section p {
  color: #7f8c8d;
  margin-bottom: 30px;
}

.form-control {
  border-radius: 0;
  border: 1px solid #ddd;
  padding: 12px 15px;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.btn-submit {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.btn-submit:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}

.map-container {
  height: 400px;
  background: #eee;
  border-right: 7px solid #58a7c2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info{
  margin-top: 50px;
  background: #e6eff7;
}

.ask{
      background: #e6eff7;
}
.contact-info i {

  font-size: 2rem;
  color: #605759;
  margin-bottom: 15px;
}

.contact-info p {
  color: #2c3e50;
  margin-bottom: 0;
}

.contact-info strong {
  display: block;
  margin-bottom: 5px;
  color: #2c3e50;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-section {
    padding: 50px 0;
  }
  
  .map-container {
    height: 300px;
    margin-top: 30px;
  }
  
  .contact-info {
    margin-top: 30px;
  }
  
  .contact-info .col-md-4 {
    margin-bottom: 30px;
  }
}