.offer-card {
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.offer-title {
  color: var(--brand-700);
}

.offer-subtitle {
  font-size: 16px;
  margin-bottom: 20px;
}

.pricing-box {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.pricing-box h6 {
  color: var(--brand-700);
  font-weight: 600;
}

.pricing-box h3 {
  color: var(--accent);
  font-weight: 700;
}

.pricing-box.highlight {
  background: #f6fbff;
  border: 2px solid var(--accent);
}

.pricing-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.offer-btn {
  background: var(--brand-700);
  color: white;
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 600;
}

.offer-btn:hover {
  background: #003a75;
  color: white;
}

.limited-text {
  color: #d9534f;
  font-weight: 600;
  margin-top: 10px;
}

.faq-panel {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.05);
}

.faq-header h2 {
  margin-bottom: 0.75rem;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(34, 50, 92, 0.08);
  color: #152338;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-accordion .faq-item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 0.75rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff;
}

.faq-accordion .accordion-button {
  background: transparent;
  color: #12263f;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.faq-accordion .accordion-button.collapsed {
  color: #2e3a52;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #0b2546;
  background: #f8fafc;
}

.faq-accordion .accordion-body {
  background: #f8fafc;
  color: #445569;
  padding: 1.5rem 1.5rem 1.5rem;
  border-top: none;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-question-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.35s ease;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-question-icon {
  transform: rotate(90deg);
}

.faq-section {
  background: #f3f7fb;
}
