/* Pricing Page Styles */
.pricing-hero {
  background: linear-gradient(rgba(42, 127, 186, 0.8), rgba(42, 127, 186, 0.8)), 
              url('images/3-desktop-hero.png');
  color: white;
  text-align: center;
  background-position: center;
  padding: 100px 0;
}


.pricing-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}


.pricing-hero p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pricing-section {
  padding: 60px 0;
  background: #f9fbfd;
}

.price-filters {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-group {
  flex: 1;
  min-width: 200px;
}

.filter-group label {
  display: block;
  margin-bottom: 8px;
  color: #2a3f5f;
  font-weight: 600;
}

.filter-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
}

.hearing-aid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.aid-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.aid-image {
  height: 200px;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.aid-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.aid-details {
  padding: 25px;
}

.aid-details h3 {
  color: #2a3f5f;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.aid-features {
  margin-bottom: 20px;
}

.aid-features p {
  margin-bottom: 8px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.aid-features i {
  color: #2a7fba;
  width: 20px;
  text-align: center;
}

.aid-price {
  margin: 20px 0;
}

.aid-price .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2a7fba;
}

.aid-price .price-note {
  font-size: 0.9rem;
  color: #777;
}

.cta-btn {
  display: inline-block;
  background: #2a7fba;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.cta-btn:hover {
  background: #1a6fa0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 127, 186, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hearing-aid-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-hero {
    padding: 70px 0;
  }
}

@media (max-width: 480px) {
  .price-filters {
    flex-direction: column;
    gap: 15px;
  }
}