.content-container {
  margin: auto;
  padding: 40px 20px;
  max-width: 1300px;
}
.container {
  max-width: 1200px;
  width: auto;
  margin: 0 auto 0 auto;
  position: relative;
}
div.content {
  max-width: 100%;
  width: auto;
  padding: 9% 4% 0;
}
.contentBody,
#Content,
.cms-content {
  max-width: 100%;
  width: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.row div {
  padding: 0 2% 20px 2%;
  flex: 0 0 45%;
}
div.content img {
  max-width: 100%;
}
.banner2 {
  width: auto !important;
  height: auto !important;
}
@media screen and (max-width: 850px) {
  .row div {
    flex: 0 0 90%;
  }
}
/* ════════════════════════════════════
       FAQ CARD
    ════════════════════════════════════ */

.faq-card {
  background: #f4f4f4;
  border-radius: 20px;
  padding: 28px 32px;
  animation: fadeUp 0.5s 0.7s ease both;
}
.faq-card h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 20px;
  color: #00205b;
}
.faq-list {
  list-style: none;
}
.faq-item {
  border-top: 2px solid gainsboro;
}
.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  text-align: left;
  gap: 12px;
}
.faq-question {
  font-size: 22px;
  font-weight: 400;
  color: black;
}
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1.8px solid var(--brand-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brand-light);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.25s, color 0.25s, transform 0.35s;
}
.faq-btn[aria-expanded="true"] .faq-icon {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
  opacity: 0;
}
.faq-answer.open {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 16px;
}
.faq-answer p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
}
