.navbar .nav-link.active {
  font-weight: bold;
  border-bottom: 2px solid #FFFFFF;
}
.card-title {
  color: #1E3A5F;
}
.card-text {
  font-size: 0.95rem;
}
.btn-primary {
  background-color: #1E3A5F;
  border: none;
}
.btn-primary:hover {
  background-color: #3C6EAA;
}
.pricing {
  background: var(--light-gray);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(44, 62, 80, 0.1);
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border: 3px solid var(--accent-blue);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'POPULAIRE';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-blue);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.price-header h3 {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent-blue);
}

.price-subtitle {
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.pricing-btn {
  background: blue;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}
.features {
  list-style: none;
  padding-left: 0;
  color: blue;
}

.features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
  color: blue;
}

.features li:last-child {
  border-bottom: none;
}