body {
      font-family: 'Inter', sans-serif;
      background-color: #121829;
      color: #e0e0e0;
      margin: 0;
      padding: 0;
    }

    .container {
      max-width: 960px;
      margin: 0 auto;
      padding: 30px 20px;
    }

    .btn {
      display: inline-block;
      background: #ff4081;
      color: white;
      font-weight: bold;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      margin-bottom: 20px;
    }

    h1 {
      color: #f9c74f;
      font-size: 1.7rem;
      margin-bottom: 10px;
    }

    .subheading {
      font-size: 0.95rem;
      color: #cfcfcf;
      margin-bottom: 25px;
    }

    .section {
      background: #1c2235;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 25px;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
    }

    .section h2 {
      font-size: 1.2rem;
      margin-bottom: 12px;
      color: #ffffff;
    }

    .section ul {
      padding-left: 20px;
    }

    .section ul li {
      margin-bottom: 10px;
      line-height: 1.6;
    }

    .highlight {
      color: #f9c74f;
      font-weight: 600;
    }

    .image-preview {
      width: 100%;
      border-radius: 10px;
      margin: 20px 0 30px 0;
    }

    p {
      line-height: 1.7;
      margin: 12px 0;
    }

    em {
      color: #ffab40;
    }

    strong {
      color: #90caf9;
    }

    .disclaimer {
      font-size: 0.9rem;
      color: #ffa726;
    }

    .quote {
      background: #1e1e2f;
      padding: 12px 18px;
      border-left: 5px solid #00bcd4;
      border-radius: 6px;
      font-style: italic;
      color: #c0c0c0;
      margin-top: 20px;
    }

    .section ul li::marker {
      color: #00e676;
    }
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #1e1e1e;
      padding: 10px 20px;
      color: white;
      flex-wrap: wrap;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo {
      width: 50px;
      height: 50px;
      object-fit: contain;
    }

    .brand-name {
      font-size: 1.2rem;
      font-weight: bold;
    }

    .nav-right a {
      color: #e0e0e0;
      text-decoration: none;
      margin-left: 20px;
      font-weight: 500;
    }

    .nav-right a:hover {
      text-decoration: underline;
    }