* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; background-color: #f4f4f9; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.top-bar { background-color: #ffeb3b; color: #d32f2f; text-align: center; padding: 10px; font-size: 14px; font-weight: bold; position: relative; z-index: 1000; }

header { background-color: #1F1E3A; color: #fff; padding: 20px 0; }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-size: 24px; font-weight: bold; color: #c05aaa; }
.nav-links { display: flex; gap: 20px; }
.nav-links a { color: #fff; transition: color 0.3s; }
.nav-links a:hover { color: #c05aaa; }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

main { padding: 40px 0; min-height: calc(100vh - 300px); }
.content-wrapper { background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
h1 { color: #1F1E3A; margin-bottom: 20px; font-size: 32px; }
h2 { color: #c05aaa; margin: 30px 0 15px; font-size: 24px; }
h3 { color: #9c7a9d; margin: 20px 0 10px; font-size: 20px; }
p { margin-bottom: 15px; }
ul.list { list-style: disc; margin-left: 20px; margin-bottom: 15px; }
ul.list li { margin-bottom: 8px; }
.hero-image { width: 100%; max-height: 400px; object-fit: cover; border-radius: 8px; margin-bottom: 30px; }

footer { background-color: #1F1E3A; color: #fff; padding: 40px 0; margin-top: 40px; }
.footer-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.footer-col { flex: 1; min-width: 250px; }
.footer-col h3 { color: #c05aaa; margin-bottom: 15px; }
.footer-col p { margin-bottom: 10px; font-size: 14px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: #9c7a9d; transition: color 0.3s; }
.footer-col ul a:hover { color: #c05aaa; }

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: #1F1E3A; padding: 20px; z-index: 999; }
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }
  header { position: relative; }
  .footer-container { flex-direction: column; }
  .content-wrapper { padding: 20px; }
}

.footer-legal {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: #9c7a9d;
}
.footer-legal p {
  margin-bottom: 5px;
}
