* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f8f9fa;
}
.navbar-nav .nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #f8d7da;
}
footer a:hover {
  text-decoration: underline;
}

.hero-section {
  background: linear-gradient(120deg, #002b45, #003b5c);
  padding: 100px 0;
}

.card-title {
  color: #002b45;
}

.btn-danger {
  background-color: #d10000;
  border-color: #b00000;
}

.btn-danger:hover {
  background-color: #b00000;
}
.pricing-card {
  transition: transform 0.3s ease;
  border-radius: 0.75rem;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  border-width: 2px;
  background: #fff0f0;
}
