/* Contact Page Styling */
.contact-page {
  background-color: #fbfbfb;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  border-bottom: 2px solid #007bff;
  display: inline-block;
  padding-bottom: 5px;
}

.contact-form .form-control {
  border-radius: 6px;
  box-shadow: none;
}

.contact-form button {
  border-radius: 6px;
  padding: 8px 20px;
}

.contact-info h4 {
  font-weight: 600;
  color: #444;
  margin-bottom: 10px;
}

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

.contact-info a i {
  color: #007bff;
  transition: color 0.3s ease;
}

.contact-info a i:hover {
  color: #e74c3c; /* hover effect */
}
