.hiv-hero {
  background: linear-gradient(135deg, rgba(111, 4, 233, 0.05), rgba(255, 0, 100, 0.05));
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 50px;
  border: 1px solid rgba(111, 4, 233, 0.1);
}

.hiv-hero h2 {
  color: var(--accent1);
  font-size: 2rem;
  margin-top: 0;
}

.hiv-hero .lead {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #555;
}

.hiv-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.hiv-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--accent1);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.hiv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.hiv-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: rgba(111, 4, 233, 0.05);
  width: 70px; 
  height: 70px;
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
}

.hiv-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
  color: #333;
}

.hiv-card p {
  color: var(--muted);
  line-height: 1.6;
  flex-grow: 1;
}

.prep-highlight {
  background: #eefcfd;
  border-color: var(--accent2);
}
.prep-highlight .hiv-icon {
  color: #008b8b;
  background: rgba(0, 255, 255, 0.1);
}

.hiv-cta {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  margin-bottom: 40px;
}
.hiv-cta h3 { color: var(--accent1); margin-top: 0; }

.hiv-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hiv-img-box {
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hiv-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.hiv-img-box:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
  .hiv-images { grid-template-columns: 1fr; }
}
