     :root {
      --primary: #f4c542;
      --accent: #e2b032;
      --bg-dark: #121212;
      --bg-card: #1e1e1e;
      --text-main: #f7f7f7;
      --text-muted: #aaa;
      --link-hover: #ffd95c;
      --border: #2c2c2c;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      background-color: var(--bg-dark);
      color: var(--text-main);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
    }

    header {
      background-color: var(--bg-card);
      padding: 2rem 1.5rem;
      text-align: center;
      border-bottom: 2px solid var(--accent);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      border-top: 2px solid var(--accent);
    }

    header img {
      height: 60px;
      max-width: 100%;
      margin-bottom: 0.5rem;
    }

    header h1 {
      font-size: 2.2rem;
      margin: 0;
      color: var(--primary);
    }

    header p {
      font-size: 1.15rem;
      color: var(--text-muted);
      margin-top: 0.5rem;
    }

    main {
      max-width: 900px;
      margin: auto;
      padding: 2rem 1.5rem;
    }

    section {
      margin-bottom: 2.5rem;
    }

    h2 {
      font-size: 1.5rem;
      color: var(--primary);
      margin-bottom: 0.6rem;
      border-bottom: 1px solid var(--border);
      padding-bottom: 0.3rem;
    }

    ul {
      list-style-type: disc;
      padding-left: 1.5rem;
    }

    ul li {
      margin-bottom: 0.5rem;
    }

    ul li::marker {
      color: var(--accent);
    }

    a {
      color: var(--primary);
      text-decoration: none;
      transition: color 0.2s ease-in-out;
    }

    a:hover {
      color: var(--link-hover);
      text-decoration: underline;
    }

    footer {
      background-color: var(--bg-card);
      padding: 1.5rem;
      text-align: center;
      font-size: 0.9rem;
      color: var(--text-muted);
      border-top: 1px solid var(--border);
    }

