
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.text-highlight {
  color: #8B0000;
}

.contact-section {
  background-color: #f8f9fa;
}

.contact-section .form-label {
  font-weight: 500;
  color: #333;
}

.contact-section .form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: none;
  transition: border-color 0.3s ease;
}

.contact-section .form-control:focus {
  border-color: #8B0000;
  box-shadow: 0 0 0 0.1rem rgba(255, 136, 0, 0.25);
}

.btn {
  background-color: #8B0000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: var(--dark-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

.btn:hover i {
  transform: translateX(3px);
}