body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.container {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 655px) {
  .content-header {
    flex-direction: column;
    align-items: normal;
  }
}

h1,
h2,
h3 {
  color: #333;
}

h1 {
  text-align: left;
  margin-bottom: 20px;
}

.last-updated {
  text-align: right;
  font-size: 0.9em;
  color: #666;
}

nav ul {
  list-style-type: none;
  padding: 0;
}

nav ul li {
  margin-bottom: 10px;
}

nav ul li a {
  color: #007BFF;
  text-decoration: none;
}

nav ul li a:hover {
  text-decoration: underline;
}

p {
  margin-bottom: 15px;
}

.highlight {
  font-weight: bold;
  color: #d9534f;
}

.contact-info {
  margin-top: 20px;
  padding: 15px;
  background: #f9f9f9;
  border-left: 4px solid #007BFF;
}

.contact-info p {
  margin: 5px 0;
}

footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.8em;
  color: #999;
}

a {
  color: #007BFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.accordion {
  background-color: #007BFF;
  color: white;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.1em;
  border-radius: 15px 15px 0px 0px;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.accordion:hover {
  background-color: #0056b3;
}

.panel {
  padding: 0 15px;
  display: none;
  background-color: white;
  overflow: hidden;
  border-radius: 0px 0px 15px 15px;
  border-left: 2px solid #007BFF;
  border-right: 2px solid #007BFF;
  border-bottom: 2px solid #007BFF;
}