/* IMPORT MODERN FONT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* BODY: BACKGROUND IMAGE + DARK OVERLAY */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15), transparent 70%);
  position: relative;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #ffffff; /* white navbar */
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  z-index: 10;
}

.navbar .logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* FAQ CARD */
.faq-container {
  width: 80vw;
  max-width: 900px;
  height: 80vh;
  padding: 50px;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 8px 20px rgba(0,0,0,0.15);
  margin: 100px auto 20px; /* leave space for navbar */
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: translateY(20px);
  opacity: 1;
  animation: floatIn 0.7s forwards ease-out;
  position: relative;
  z-index: 1;
}

@keyframes floatIn {
  to { transform: translateY(0); opacity: 1; }
}

/* LOGO IN CARD */
.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.logo-container img {
  max-width: 180px;
  height: auto;
}

/* HEADINGS */
h1 {
  text-align: center;
  color: #000000;
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* FAQ ITEMS */
.faq-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item h3 {
  color: #000000;
  font-size: 20px;
  margin-bottom: 6px;
}

.faq-item p {
  font-size: 16px;
  line-height: 1.5;
  color: #292929;
}

/* CONTACT LINK */
.faq-contact p {
  font-size: 16px;
  margin-top: 20px;
  text-align: center;
}

.faq-contact a {
  color: #1F8A95;
  text-decoration: underline;
  font-weight: 600;
}

/* Scrollbar */
.faq-container::-webkit-scrollbar {
  width: 8px;
}
.faq-container::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}
.faq-container::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-container { width: 90%; height: 90vh; padding: 30px; }
  .faq-item h3 { font-size: 18px; }
  .faq-item p, .faq-contact p { font-size: 15px; }
}