<style>
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: #000;
    background-color: #fff;
  }
  
  /* Header */
  header {
    background: linear-gradient(90deg, #1c255b 0%, #425adb 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo img {
    height: 60px;
    width: auto;
  }
  
  nav {
    display: flex;
    gap: 20px;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .menu-toggle span {
    background: #fff;
    height: 3px;
    width: 25px;
    margin: 4px 0;
    border-radius: 2px;
  }
  
  @media (max-width: 768px) {
    nav {
      display: none;
      flex-direction: column;
      background: linear-gradient(90deg, #1c255b 0%, #425adb 100%);
      width: 100%;
      text-align: center;
    }
    nav.active {
      display: flex;
    }
    .menu-toggle {
      display: flex;
    }
  }
  
  /* Main Content */
  main {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
    background-color: #fff;
  }
  
  h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  h2 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 25px;
    margin-bottom: 15px;
  }
  
  h3 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 20px;
  }
  
  p {
    margin-top: 10px;
    text-align: justify;
    font-weight: 400;
  }
  
  ul, ol {
    margin-left: 20px;
    margin-top: 10px;
    font-weight: 400;
  }
  
  figure {
    margin: 20px 0;
  }
  
  figure img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  figcaption {
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 5px;
    color: #555;
  }
  
  table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 10px;
  }
  
  th, td {
    border: 1px solid #ccc;
    padding: 5px 10px;
    text-align: left;
    font-weight: 400;
  }
  
  main a {
    color: #0066cc;
    text-decoration: none;
    transition: 0.2s ease;
    font-weight: 400;
  }
  
  main a:hover {
    color: #004b99;
    text-decoration: underline;
  }
  
  /* Contact Page */
  .contact-page section {
    margin-top: 30px;
  }
  
  .contact-page form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
  }
  
  .contact-page form input,
  .contact-page form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    width: 100%;
  }
  
  .contact-page form button {
    padding: 12px;
    background-color: #1e73be;
    color: #fff;
    font-size: 1em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-page form button:hover {
    background-color: #155d8b;
  }
  
  .contact-page iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 6px;
    margin-top: 20px;
  }
  
  /* FAQ Section */
  .faq-item h3 {
    cursor: pointer;
    background: linear-gradient(90deg, #1c255b 0%, #425adb 100%);
    color: #fff;
    padding: 10px;
    border-radius: 6px;
  }
  
  .faq-item p {
    display: none;
    padding: 10px;
    background: #f4f4f4;
    border-left: 3px solid #4d4d4d;
  }
  
  /* Footer */
  footer {
    background: linear-gradient(180deg, #0d1127 0%, #3748ab 100%);
    color: #fff;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  footer h2 {
    margin-bottom: 10px;
    color: #E6B625;
  }
  
  footer a {
    color: #fff;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  .social-icons img {
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }
  
  .copyright {
    background: linear-gradient(90deg, #1c255b 0%, #425adb 100%);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  </style>