/* Match alignment to "Still can’t find an answer?" */
.aligned-container {
  max-width: 860px; /* adjust this value if needed to match exactly */
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Compact bridge wrapper */
.hc-bridge {
  background: #f4f4f4;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  padding: 30px 0;
}

/* Text */
.hc-bridge__title {
  margin: 0 0 4px 0;
  font-size: 24px;
  font-weight: 600;
  color: #222;
}

.hc-bridge__subtitle {
  margin: 0;
  font-size: 16px;
  color: #444;
}

.hc-bridge__subtitle a {
  color: #0073e6;
  text-decoration: none;
  font-weight: 500;
}

.hc-bridge__subtitle a:hover {
  text-decoration: underline;
}

/* Call button */
.hc-bridge__actions {
  flex-shrink: 0;
}

.hc-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 28px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease, transform .05s ease;
}

.hc-btn--primary {
  background: #0171F1; /* Synup Blue */
  color: #fff;
  border: 1px solid #E9ECEE;
}

.hc-btn--primary:hover {
  background: #0171F1;
  border-color: #0171F1;
  transform: translateY(-1px);
}

/* Responsive stacking */
@media (max-width: 768px) {
  .aligned-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .hc-bridge__actions {
    width: 100%;
    justify-content: flex-start;
  }
}

