:root {
  --primary-color: #3498db;
  --secondary-color: #2980b9;
  --text-color: #2c3e50;
  --background-color: #ecf0f1;
  --accent-color: #e74c3c;
  --section-bg-color: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

.faqs-page {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(180deg, #f6fafe 0%, #ffffff 60%);
}

.faqs-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.25rem, 4vw, 3.25rem);
}

.faqs-eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d97e9;
  background: rgba(13, 151, 233, 0.1);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.faqs-subheading {
  text-align: center;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 0.75rem;
}

.faqs-subheading span {
  color: #0D97E9;
}

.faqs-intro {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

.faqs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.faq-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(13, 151, 233, 0.14);
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1.4rem;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(13, 151, 233, 0.16);
  border-color: rgba(13, 151, 233, 0.32);
}

.faq-card__mark {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d97e9 0%, #0b7bc7 100%);
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 6px 16px rgba(13, 151, 233, 0.32);
}

.faq-card__question {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.4rem;
  line-height: 1.35;
}

.faq-card__answer {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

.faqs-empty {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #0d97e9 0%, #0b7bc7 100%);
  color: #fff;
  padding: 2.5rem 2rem;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(13, 151, 233, 0.3);
}

.faqs-empty__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.5rem;
}

.faqs-empty__title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
}

.faqs-empty__text {
  margin: 0;
  opacity: 0.92;
}

.faqs-empty__text a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .faqs-grid {
    grid-template-columns: 1fr;
  }
}


@keyframes move-background {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(113px, 113px);
  }
}

.header-content {
  position: relative;
  z-index: 2;
}

h1 {
  font-family: 'Barlow', sans-serif;
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
}

main {
  padding: 2rem 0;
}

.section {
  background-color: var(--section-bg-color);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

h2 {
  font-family: 'Barlow', sans-serif;
  color: var(--secondary-color);
  font-size: 1.40rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

h2::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: px;
  background-color: var(--secondary-color);
  margin-right: 10px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

p, ul {
  margin-bottom: 1rem;
}

ul {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

.last-updated {
  font-style: italic;
  text-align: right;
  color: #7f8c8d;
  margin-top: 2rem;
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  transition: background-color 0.3s;
}

#back-to-top:hover {
  background-color: var(--secondary-color);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 1.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

