/* RHI OFFERING PAGE CSS */
.py-section { padding: 90px 0; }

.offering-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.2rem;
  height: 100%;
  transition: box-shadow .25s, transform .25s;
}
.offering-card:hover {
  box-shadow: 0 12px 40px rgba(26,107,255,.1);
  transform: translateY(-3px);
}
.offering-featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-color: transparent;
  color: #fff;
}
.offering-featured h4, .offering-featured p { color: #fff !important; }
.offering-featured .of-list li { color: rgba(255,255,255,.8); }
.offering-featured .of-list i { color: var(--blue) !important; }

.of-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.of-icon {
  width: 52px; height: 52px;
  background: var(--blue);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}
.of-icon-alt {
  background: var(--blue-light);
  color: var(--blue);
}
.offering-card h4 { font-size: 1.1rem; margin-bottom: .3rem; color: var(--navy); font-weight: 700; }
.offering-card p { color: var(--muted); font-size: .88rem; line-height: 1.75; margin-bottom: 1rem; }

.of-list { list-style: none; padding: 0; margin: 0; }
.of-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--muted);
  font-size: .86rem;
  padding: .3rem 0;
  border-bottom: 1px solid var(--border);
}
.offering-featured .of-list li { border-color: rgba(255,255,255,.1); }
.of-list li:last-child { border-bottom: none; }
.of-list i { color: var(--blue); font-size: .9rem; flex-shrink: 0; }

/* Value Banner */
.value-banner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  box-shadow: 0 4px 20px rgba(26,107,255,.07);
}
.value-banner h3 { color: var(--navy); font-size: 1.5rem; margin-bottom: .6rem; }
.value-banner p { color: var(--muted); font-size: .92rem; line-height: 1.7; margin: 0; }

@media (max-width: 768px) {
  .py-section { padding: 60px 0; }
  .value-banner { padding: 1.8rem; }
  .value-banner .text-md-end { text-align: left !important; margin-top: .5rem; }
}