.dob-section {
  background-color: #f0f9ff;
  border-left: 4px solid #0d6efd;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.dob-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dob-heading {
  color: #0d6efd;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.dob-text {
  color: #566a7f;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.date-input {
  border: 1px solid #cfd7e6;
  border-radius: 5px;
  padding: 10px 12px;
  color: #697a8d;
  transition: all 0.2s;
}

.date-input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.dob-icon {
  color: #0d6efd;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .dob-section {
    padding: 15px;
  }

  .dob-heading {
    font-size: 1rem;
  }

  .dob-text {
    font-size: 0.85rem;
  }
}
