      .daftar-buttons {
      width: 100%;
      margin-top: 27px;
      margin-bottom: 27px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      }

      .btn-daftar {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 160px;
      height: 52px;
      padding: 0 20px;
      background: #f5f6f7;
      color: #202124 !important;
      border: 2px solid #202124;
      border-radius: 30px;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 16px;
      font-weight: 700;
      text-align: center;
      text-decoration: none !important;
      white-space: nowrap;
      cursor: pointer;
      box-sizing: border-box;
      transition: background .2s ease;
      }

      .btn-daftar:hover {
      background: #e8e8e8;
      color: #202124 !important;
      text-decoration: none !important;
      }

      @media (max-width: 400px) {
      .daftar-buttons {
      padding: 0 10px;
      }

      .btn-daftar {
      min-width: 0;
      flex: 1;
      padding: 0 12px;
      font-size: 14px;
      }
      }

      .tabel-kecil {
      width: 100%;
      max-width: 350px;
      margin: 20px auto;
      padding: 15px 18px;
      background: #f7f7f7;
      border: 1px solid #dddddd;
      border-radius: 8px;
      box-sizing: border-box;
      font-family: Arial, Helvetica, sans-serif;
      text-align: center;
      }

      .tabel-kecil strong {
      display: block;
      margin-bottom: 6px;
      color: #222;
      font-size: 15px;
      }

      .tabel-kecil p {
      margin: 0;
      color: #666;
      font-size: 13px;
      line-height: 1.6;
      }

      .tabel-teks-panjang {
      width: 100%;
      max-width: 900px;
      margin: 25px auto;
      background: #ffffff;
      border: 1px solid #dddddd;
      border-radius: 10px;
      overflow: hidden;
      box-sizing: border-box;
      font-family: Arial, Helvetica, sans-serif;
      }

      .tabel-teks-judul {
      padding: 15px 20px;
      background: #f5f5f5;
      border-bottom: 1px solid #dddddd;
      color: #222222;
      font-size: 16px;
      font-weight: 700;
      }

      .tabel-teks-isi {
      padding: 20px;
      color: #666666;
      font-size: 14px;
      line-height: 1.9;
      text-align: left;
      /* Supaya kata panjang tidak merusak layout */
      overflow-wrap: break-word;
      word-break: normal;
      }

      .tabel-teks-isi p {
      margin: 0 0 15px;
      }

      .tabel-teks-isi p:last-child {
      margin-bottom: 0;
      }

      @media (max-width: 600px) {
      .tabel-teks-panjang {
      margin: 18px auto;
      border-radius: 7px;
      }

      .tabel-teks-judul {
      padding: 13px 15px;
      font-size: 15px;
      }

      .tabel-teks-isi {
      padding: 15px;
      font-size: 13px;
      line-height: 1.8;
      }
      }

      .faq-glass,
      .faq-glass * {
      box-sizing: border-box;
      }

      .faq-glass {
      width: 100%;
      max-width: 950px;
      margin: 50px auto;
      padding: 0 18px;
      font-family: Arial, Helvetica, sans-serif;
      }

      .faq-glass-head {
      margin-bottom: 28px;
      text-align: center;
      }

      .faq-glass-head>span {
      display: inline-block;
      margin-bottom: 9px;
      padding: 6px 12px;
      border-radius: 999px;
      background: #111;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      }

      .faq-glass-head h2 {
      margin: 0 0 9px;
      color: #1c1c1c;
      font-size: 29px;
      line-height: 1.2;
      }

      .faq-glass-head p {
      max-width: 600px;
      margin: auto;
      color: #777;
      font-size: 14px;
      line-height: 1.7;
      }

      .faq-glass-item {
      margin-bottom: 12px;
      border: 1px solid #e1e1e1;
      border-radius: 14px;
      background: #fff;
      overflow: hidden;
      box-shadow:
      0 7px 20px rgba(0, 0, 0, .035);
      transition: .3s ease;
      }

      .faq-glass-item.active {
      border-color: #222;
      box-shadow:
      0 12px 30px rgba(0, 0, 0, .07);
      transform: translateY(-2px);
      }

      .faq-glass-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 20px 22px;
      border: 0;
      background: transparent;
      color: #222;
      font-size: 15px;
      font-weight: 700;
      text-align: left;
      cursor: pointer;
      }

      .faq-glass-question b {
      width: 32px;
      height: 32px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: #f2f2f2;
      color: #222;
      font-size: 19px;
      font-weight: 400;
      transition: .3s ease;
      }

      .faq-glass-item.active .faq-glass-question b {
      background: #111;
      color: #fff;
      transform: rotate(45deg);
      }

      .faq-glass-answer {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition:
      max-height .4s ease,
      opacity .3s ease;
      }

      .faq-glass-answer>div {
      margin: 0 22px;
      padding:
      17px 0 22px;
      border-top: 1px solid #eeeeee;
      color: #666;
      font-size: 14px;
      line-height: 1.85;
      }

      .faq-glass-item.active .faq-glass-answer {
      opacity: 1;
      }

      @media(max-width:600px) {
      .faq-glass {
      margin: 35px auto;
      padding: 0 12px;
      }

      .faq-glass-head h2 {
      font-size: 24px;
      }

      .faq-glass-question {
      padding: 17px 16px;
      font-size: 14px;
      }

      .faq-glass-question b {
      width: 29px;
      height: 29px;
      font-size: 17px;
      }

      .faq-glass-answer>div {
      margin: 0 16px;
      padding:
      15px 0 18px;
      font-size: 13px;
      }
      }

      .rental-oksigen-do-it {
      background-color: #6e07e4
      }

      .review-grid108,
      .review-grid108 * {
      box-sizing: border-box;
      }

      .review-grid108 {
      width: 100%;
      max-width: 1100px;
      margin: 55px auto;
      padding: 0 18px;
      font-family: Arial, Helvetica, sans-serif;
      }

      .review-grid108-head {
      text-align: center;
      margin-bottom: 30px;
      }

      .review-grid108-head>span {
      display: inline-block;
      margin-bottom: 9px;
      padding: 6px 12px;
      border-radius: 999px;
      background: #111;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      }

      .review-grid108-head h2 {
      margin: 0 0 8px;
      color: #222;
      font-size: 30px;
      }

      .review-grid108-head p {
      max-width: 600px;
      margin: auto;
      color: #777;
      font-size: 14px;
      line-height: 1.7;
      }

      .review-grid108-slider {
      overflow: hidden;
      }

      .review-grid108-track {
      display: flex;
      gap: 16px;
      transition:
      transform .55s cubic-bezier(.22, .61, .36, 1);
      }

      .review-grid108-card {
      flex: 0 0 calc(33.333% - 11px);
      min-height: 270px;
      padding: 25px;
      background: #fff;
      border: 1px solid #e3e3e3;
      border-radius: 14px;
      box-shadow:
      0 8px 22px rgba(0, 0, 0, .045);
      transition:
      transform .25s ease,
      box-shadow .25s ease;
      }

      .review-grid108-card:hover {
      transform: translateY(-5px);
      box-shadow:
      0 15px 35px rgba(0, 0, 0, .08);
      }

      .review-grid108-stars {
      margin-bottom: 14px;
      color: #e5a300;
      font-size: 16px;
      letter-spacing: 2px;
      }

      .review-grid108-card h3 {
      margin: 0 0 12px;
      color: #222;
      font-size: 17px;
      line-height: 1.4;
      }

      .review-grid108-card>p {
      margin: 0;
      color: #666;
      font-size: 13px;
      line-height: 1.8;
      }

      .review-grid108-user {
      display: flex;
      align-items: center;
      gap: 11px;
      margin-top: 22px;
      padding-top: 18px;
      border-top: 1px solid #eee;
      }

      .review-grid108-avatar {
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border-radius: 50%;
      background: #222;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      }

      .review-grid108-user strong {
      display: block;
      margin-bottom: 3px;
      color: #222;
      font-size: 12px;
      }

      .review-grid108-user span {
      display: block;
      color: #999;
      font-size: 9px;
      }

      .review-grid108-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-top: 20px;
      }

      .review-grid108-nav>button {
      width: 38px;
      height: 38px;
      border: 1px solid #ddd;
      border-radius: 50%;
      background: #fff;
      color: #222;
      cursor: pointer;
      transition: .2s ease;
      }

      .review-grid108-nav>button:hover {
      background: #222;
      color: #fff;
      border-color: #222;
      }

      .review-grid108-dots {
      display: flex;
      align-items: center;
      gap: 6px;
      }

      .review-grid108-dot {
      width: 7px;
      height: 7px;
      padding: 0;
      border: 0;
      border-radius: 20px;
      background: #ccc;
      cursor: pointer;
      transition: .25s ease;
      }

      .review-grid108-dot.active {
      width: 22px;
      background: #222;
      }

      @media(max-width:850px) {
      .review-grid108-card {
      flex: 0 0 calc(50% - 8px);
      }
      }

      @media(max-width:600px) {
      .review-grid108 {
      margin: 35px auto;
      padding: 0 12px;
      }

      .review-grid108-head h2 {
      font-size: 24px;
      }

      .review-grid108-card {
      flex: 0 0 100%;
      min-height: auto;
      padding: 20px;
      }
      }