.contact {
  background-color: white;
  position: relative;
}

.contact-info {
  margin-bottom: 3rem;
}

.contact-card {
  background-color: #f5f9fa;
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background-color: #edf3f5;
  transform: translateY(-3px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5d7f8c 0%, #3a5560 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-weight: 600;
  color: #4a6670;
  margin-bottom: 0.3rem;
}

.contact-text p {
  color: #5a6e72;
}

.contact-form {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #5d7f8c;
  box-shadow: 0 0 0 2px rgba(93, 127, 140, 0.2);
  outline: none;
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.map-container {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .contact-form {
    margin-bottom: 2rem;
  }
  
  .map-container {
    height: 300px;
  }
}
