body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

.simple-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(14px);
}

.simple-nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.simple-nav a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 800;
}

.simple-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.simple-page {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 60px;
  display: grid;
  gap: 22px;
}

.simple-hero,
.simple-card {
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(85, 94, 112, 0.88), rgba(58, 67, 84, 0.82));
  border: 1px solid rgba(202, 211, 226, 0.24);
  box-shadow: 0 24px 60px rgba(10, 16, 32, 0.22);
  backdrop-filter: blur(20px);
}

.simple-hero h1,
.simple-card h2 {
  margin: 0 0 12px;
  color: #f8fbff;
}

.simple-hero p,
.simple-card p,
.simple-card li {
  color: rgba(232, 239, 251, 0.82);
  line-height: 1.9;
}

.simple-card ul {
  margin: 0;
  padding-inline-start: 20px;
}

.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 20px;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 20px;
}

.chatbot-card {
  display: grid;
  gap: 16px;
}

.chatbot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.section-mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: rgba(240, 245, 255, 0.14);
  border: 1px solid rgba(220, 229, 242, 0.22);
  color: #f8fbff;
  font-weight: 700;
}

.chat-messages {
  min-height: 360px;
  max-height: 480px;
  overflow: auto;
  padding: 18px;
  border-radius: 24px;
  background: rgba(18, 25, 40, 0.34);
  border: 1px solid rgba(218, 227, 243, 0.12);
  display: grid;
  gap: 12px;
}

.chat-bubble {
  max-width: min(82%, 560px);
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.9;
  box-shadow: 0 14px 30px rgba(10, 16, 32, 0.16);
}

.chat-bubble.bot {
  justify-self: start;
  background: rgba(236, 242, 251, 0.14);
  border: 1px solid rgba(220, 229, 242, 0.18);
  color: rgba(244, 248, 255, 0.92);
}

.chat-bubble.user {
  justify-self: end;
  background: rgba(223, 233, 248, 0.86);
  color: #172033;
}

.chat-quick-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chat-chip {
  border: 1px solid rgba(220, 229, 242, 0.18);
  background: rgba(239, 245, 255, 0.1);
  color: #f8fbff;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.chat-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(10, 16, 32, 0.16);
  background: rgba(239, 245, 255, 0.16);
}

.chat-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.chat-input {
  width: 100%;
  border: 1px solid rgba(220, 229, 242, 0.16);
  border-radius: 18px;
  background: rgba(18, 25, 40, 0.38);
  color: #f8fbff;
  padding: 14px 16px;
  font: inherit;
}

.chat-input::placeholder {
  color: rgba(228, 236, 248, 0.55);
}

.human-card {
  display: grid;
  gap: 12px;
}

.human-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.faq-hero {
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 216, 244, 0.22), transparent 70%);
  pointer-events: none;
}

.simple-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 10px 18px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(240, 245, 255, 0.14);
  border: 1px solid rgba(220, 229, 242, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #f8fbff;
  font-weight: 700;
}

.faq-accordion {
  display: grid;
  gap: 16px;
}

.privacy-accordion .faq-answer {
  max-height: 0;
}

.privacy-accordion .faq-item.open .faq-answer {
  max-height: 320px;
}

.faq-answer-rich p {
  max-width: 92ch;
}

.policy-meta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.policy-meta-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(237, 242, 251, 0.12);
  border: 1px solid rgba(220, 229, 242, 0.16);
  color: #f8fbff;
  font-weight: 700;
}

.faq-item {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(90, 99, 118, 0.92), rgba(67, 76, 95, 0.86));
  border: 1px solid rgba(208, 218, 234, 0.18);
  box-shadow: 0 18px 42px rgba(10, 16, 32, 0.18);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(10, 16, 32, 0.24);
  border-color: rgba(225, 234, 248, 0.28);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  border: 0;
  background: transparent;
  color: #f8fbff;
  font-size: 1.22rem;
  font-weight: 800;
  cursor: pointer;
  text-align: start;
}

.faq-trigger span:first-child {
  flex: 1;
}

.faq-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(235, 241, 251, 0.12);
  border: 1px solid rgba(224, 232, 246, 0.16);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.24s ease, background 0.24s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(235, 241, 251, 0.18);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.28s ease, padding 0.28s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 24px;
  color: rgba(234, 240, 250, 0.9);
  font-size: 1rem;
  line-height: 2;
}

.faq-item.open .faq-answer {
  max-height: 220px;
  padding: 0 28px;
}

.contact-method {
  display: grid;
  gap: 8px;
}

.contact-method strong {
  font-size: 1.05rem;
}

@media (max-width: 760px) {
  .faq-grid,
  .contact-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .faq-trigger {
    padding: 20px 22px;
    font-size: 1.06rem;
  }

  .faq-answer {
    padding: 0 22px;
  }

  .faq-item.open .faq-answer {
    padding: 0 22px;
  }

  .faq-answer p {
    padding-bottom: 20px;
  }

  .chat-input-row {
    grid-template-columns: 1fr;
  }
}
