: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-subheading {
text-align: center;
font-family: 'Barlow', sans-serif;
font-weight: 600;
font-size: 45px;
line-height: 57.01px;
letter-spacing: -0.6px;
  }

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


@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;
  }
}

