body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
  }

  header {
    background-color: rgb(253, 151, 27);
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    box-shadow: 0px 4px 8px rgba(21, 227, 227, 0.986);
    z-index: 200;
  }

  .logo img {
    width: 120px;
    margin-left: 15px;
  }

  nav {
    display: flex;
    align-items: center;
    margin-right: 35px;
  }

  nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s;
  }

  nav a:hover {
    color: #11d7c6;
  }

  .hero {
    background-color: #fff;
    height: 400px;
    width: 400px;
    border-radius: 50%;
    margin: 100px auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .container {
    padding: 20px;
    text-align: center;
    max-width: 800px;
    margin: auto;
  }

  .description.bsi {
    font-family: "Oswald", sans-serif;
    font-weight: bold;
    font-size: 2rem;
    color: #20b2aa;
    margin-top: 20px;
  }

  .description {
    font-size: 1.2rem;
    color: #333;
    margin: 5px 0;
  }

  .description.highlight {
    font-family: "Cursive", sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    color: #ff5722;
    margin: 20px 0;
  }

  .info-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
  }

  .info-table th,
  .info-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
  }

  .info-table th {
    background-color: #10b5a7;
    color: white;
  }

  .form-container {
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .form-container h2 {
    text-align: center;
    margin-bottom: 20px;
  }

  .form-container input,
  .form-container textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
  }

  .form-container button {
    background-color: #10b5a7;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
  }

  .form-container button:hover {
    background-color: #0d978d;
  }

  /* Hero untuk BROSUR GADAI EMAS */
  .brochure-hero {
    background-color: #fff;
    height: 1000px; /* Tinggi lebih besar untuk menampilkan seluruh brosur */
    width: 600px;
    border-radius: 0;
    margin: 50px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .brochure-hero img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
  }