* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
body {
  background: #f4f8fc;
  color: #000000;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: 50px auto;
}

.logo-container {
  text-align: center;
  margin-bottom: 20px;
}
.logo-container img {
  max-width: 200px;
  height: auto;
}

h1 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 40px;
  color: #0a3d62;
}
.subtitle {
  text-align: center;
  margin-bottom: 20px;
  color: #555;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}
.tab {
  padding: 10px 20px;
  background: #ff0000;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.tab.active {
  background: #0a3d62;
}

.search-bar {
  text-align: center;
  margin-bottom: 30px;
}
.search-bar input {
  padding: 10px 15px;
  width: 90%;
  max-width: 500px;
  border-radius: 30px;
  border: 1px solid #ccc;
  outline: none;
  transition: 0.3s;
}

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: bold;
  background: #0a3d62;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}
.faq-question i {
  transition: transform 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 20px;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}
.faq-answer p {
  padding: 15px 0;
  color: #000000;
  font-size: 13pt;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px 20px;
}
.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

footer {
  margin-top: 60px;
  text-align: center;
  padding: 20px;
  background: #0a3d62;
  color: white;
  font-size: 14px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
  .faq-question {
    font-size: 15px;
  }
  .faq-answer p {
    font-size: 14px;
  }
  .tab {
    padding: 8px 15px;
    font-size: 14px;
  }
  .logo-container img {
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 16px;
  }
  .faq-question {
    font-size: 13px;
  }
  .faq-answer p {
    font-size: 13px;
  }
  .tab {
    padding: 8px 15px;
    font-size: 13px;
  }
  .logo-container img {
    max-width: 120px;
  }
}
