/* General Styles */
body {
  font-family: 'Calibri', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
}

h1, h3 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

/* Navbar Styles (same as existing) */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background-color: #333;
  color: white;
}

.nav-left, .nav-right {
  display: flex;
}

.nav-links, .nav-icons {
  list-style: none;
  display: flex;
}

.nav-links li, .nav-icons li {
  margin-right: 1em;
}

.nav-links li a, .nav-icons li a {
  color: white;
  text-decoration: none;
}

.nav-center img {
  max-height: 50px;
}

/* FAQ Page Styles */
.faq-section {
  padding: 3em 1em;
  text-align: center;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-container h1 {
  font-size: 2.5em;
  margin-bottom: 2em;
}

.faq-item {
  margin-bottom: 1.5em;
  text-align: left;
}

.faq-item .question {
  font-weight: bold;
  font-size: 1.3em;
  color: #333;
  cursor: pointer;
}

.faq-item .answer {
  margin-top: 0.5em;
  font-size: 1.1em;
  color: #555;
  line-height: 1.5;
}

/* Footer Styles (same as existing) */
.footer {
  background-color: #333;
  color: white;
  padding: 2em 0;
}

.footer-container {
  display: flex;
  justify-content: space-around;
}

.footer-column {
  width: 30%;
}

.footer-column h3 {
  margin-bottom: 1em;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin: 0.5em 0;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 2em;
}

.footer-bottom p {
  margin: 0;
  font-size: 1em;
}
