/* Header container with icon + title */
.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.favicon-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px; /* subtle rounded edges */
  background: white; /* makes it pop on blue header */
  padding: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-link:hover .favicon-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.faq-section {
  margin-top: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq-section h2 {
  margin-bottom: 1rem;
  text-align: center;
  /*color: #0d6efd; */ /*Pick color for each page*/
  
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-item h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.3rem;
}

.faq-item p {
  font-size: 0.95rem;
  color: #555;
}