    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      margin: 0;
      background: #fff8e1; 
      color: #333;
      font-size: 16px;
      line-height: 1.6;
    }

    nav {
      background: #b8860b;
      padding: 12px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      margin: 0;
      padding: 0;
    }
    nav ul li {
      margin: 0 15px;
    }
    nav ul li a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }
    nav ul li a:hover {
      color: #ffd700;
    }

    header {
      text-align: center;
      padding: 40px 20px;
      background: linear-gradient(135deg, #ffd700, #b8860b);
      color: #fff;
    }
    header .logo img {
      max-width: 120px;
      margin-bottom: 15px;
    }
    h1 {
      font-size: 2.8em;
      margin: 0;
    }

    main {
      padding: 40px 20px;
      max-width: 1000px;
      margin: auto;
      line-height: 1.6;
    }

    section {
      margin: 40px 0;
      padding: 20px;
      background: #fffaf0;
      border: 2px solid #ffd700;
      border-radius: 10px;
    }

    h2 {
      color: #b8860b;
      font-size: 2em;
      margin-bottom: 15px;
    }

    .btn {
      display: inline-block;
      margin-top: 15px;
      padding: 12px 24px;
      background: #ffd700;
      color: #333;
      text-decoration: none;
      font-weight: bold;
      border-radius: 6px;
      transition: all 0.3s ease;
      box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    }
    .btn:hover {
      background: #b8860b;
      color: #fff;
      transform: translateY(-2px);
    }

    .faq-item {
      margin-bottom: 30px;
      padding: 15px;
      border-left: 4px solid #ffd700;
      background: #fffef5;
      transition: background 0.3s ease;
    }
    .faq-item:hover {
      background: #fff8dc;
    }
    .faq-item h3 {
      color: #b8860b;
      margin-bottom: 8px;
    }
    .faq-item p {
      margin: 0;
    }
    .faq-item a {
      color: #b8860b;
      font-weight: bold;
      text-decoration: underline;
    }
    .faq-image {
      display: block;
      margin-top: 15px;
      max-width: 100%;
      border: 1px solid #b8860b;
      border-radius: 6px;
    }

    footer {
      text-align: center;
      padding: 20px;
      background: #b8860b;
      color: #fff;
      font-size: 0.9em;
      border-top: 3px solid #ffd700;
    }

    @media (max-width: 768px) {
      nav ul {
        flex-direction: column;
      }
      nav ul li {
        margin: 10px 0;
      }
      h1 {
        font-size: 2.2em;
      }
      h2 {
        font-size: 1.6em;
      }
    }