body {
  background: #f3f4f5;
}

.btn {
  border-radius: 10px;
}

.navbar {
  background: rgba(241, 242, 244, 0.8);
  border-bottom: 1px solid #dfe3e7 ;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.hero-content {
  background: #f3f4f5;
}

/* Subtle overlay for text readability without obscuring background */
.hero-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 0;
}

.hero-gradient {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Hero text improvements */
.hero-title {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  color: #ffffff;
}

.hero-subtitle {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  color: #ffffff;
}

[role="banner"] .hero-content {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-gradient {
    min-height: 500px;
  }
  
  .hero-content {
    background: transparent;
    height: 500px;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    height: 600px;
  }
}

@media (min-width: 1400px) {
  .hero-content {
    height: 800px;
  }
}

.card .btn {
  border-radius: 20px;
  padding-left: 16px;
  margin-left: -16px;
  background: transparent;
  border-style: none;
}

.card:hover .card-img {
  transform: scale(1.10);
}

.card {
  overflow: hidden;
  border-radius: 20px;
}

.card .card-img {
  transition: all ease .3s;
}

@media (min-width: 768px) {
  .card-content-half {
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}

.card:hover .btn {
  background: var(--bs-blue);
  color: white;
}

.pricing-card .btn {
  padding-left: 0;
}

