* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.hero-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 5rem 0;
}

.hero-section h1 {
  font-size: 3rem;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section {
    padding: 3rem 0;
  }
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.icon-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.btn-warning {
  background-color: #ffc107;
  border-color: #ffc107;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.text-warning {
  color: #ffc107 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.bg-dark {
  background-color: #1a1a1a !important;
}

.btn-light {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
  color: #1a1a1a;
}

.btn-light:hover {
  background-color: #e0e0e0;
  border-color: #e0e0e0;
  color: #1a1a1a;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
  color: #333;
}

.form-check-input:checked {
  background-color: #ffc107;
  border-color: #ffc107;
}

.form-check-input:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.collapse:not(.show) {
  display: none;
}

.card-header button {
  text-decoration: none;
  color: #1a1a1a;
  display: block;
  width: 100%;
  text-align: left;
  padding: 1rem;
}

.card-header button:hover {
  background-color: #f9f9f9;
  text-decoration: none;
  color: #ffc107;
}

footer {
  background-color: #1a1a1a;
  margin-top: 5rem;
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  opacity: 0.8;
}

.media {
  display: flex;
  flex-direction: column;
}

.icon-check {
  color: #ffc107;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

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

@media (max-width: 576px) {
  .consultation-form {
    padding: 1.5rem;
  }

  .hero-section {
    padding: 2rem 0;
  }

  .hero-section p {
    font-size: 1rem;
  }
}

svg {
  color: #28a745;
}

.alert {
  border-radius: 0.375rem;
  padding: 1.25rem;
}

.alert-info {
  background-color: #e7f3ff;
  border-color: #b3d9ff;
  color: #004085;
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffeaa7;
  color: #856404;
}

.text-muted {
  color: #6c757d;
}

.display-4 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.border-0 {
  border: 0 !important;
}

.border-left {
  border-left: 4px solid !important;
}

.gap-3 {
  gap: 1rem;
}
