
  h1 {
      font-size: 32px;
      font-weight: 800;
      text-align: center;
      color: #1e1e1e;
      margin-bottom: 10px;
      line-height: 1.4;
  }

  h1 span {
      color: #00aeff;
  }

  h2 {
      font-size: 26px;
      font-weight: 700;
      color: #1e1e1e;
      margin: 30px 0 20px 0;
      position: relative;
      padding-left: 15px;
  }

  h2::before {
      content: '';
      position: absolute;
      left: 0;
      top: 5px;
      bottom: 5px;
      width: 4px;
      background: #0066ff;
      border-radius: 4px;
  }

  h3 {
      font-size: 20px;
      font-weight: 600;
      color: #00aeff;
      margin: 20px 0 10px 0;
  }

  /* Paragraphs */
  p {
      color: #2e2e2e;
      margin-bottom: 15px;
      font-size: 16px;
      text-align: justify;
  }

  /* Links */
  a {
      color: #00aeff;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.2s ease;
  }

  a:hover {
      color: #0066ff;
  }

  /* Article highlight (Fully Transparent) */
  .highlight-box {
      border-radius: 16px;
      padding: 25px;
      margin: 30px 0;
      position: relative;
      overflow: hidden;
      z-index: 1;
      border: 1px solid rgba(0, 201, 100, 0.4);
      background: transparent; /* Transparan total tanpa warna */
      box-shadow: none;
  }
  
  /* Menghilangkan efek pantulan liquid/metal */
  .highlight-box::before,
  .highlight-box::after {
      display: none;
  }
  
  .highlight-box h1,
  .highlight-box h2,
  .highlight-box h3,
  .highlight-box strong {
      color: #1e1e1e;
      text-shadow: none;
  }
  
  .highlight-box p,
  .highlight-box li,
  .highlight-box span {
      color: #2e2e2e;
  }

  /* Info Cards (Fully Transparent) */
  .info-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
      margin: 25px 0;
  }

  .info-card {
      background: transparent; /* Transparan total tanpa warna */
      border: 1px solid rgba(0, 201, 100, 0.4);
      border-radius: 16px;
      padding: 20px 10px;
      text-align: center;
  }

  .info-card .label {
      font-size: 14px;
      color: #00aeff;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .info-card .value {
      font-size: 18px;
      font-weight: 700;
      color: #1e1e1e;
      margin-top: 8px;
  }

  /* FAQ Accordion (Fully Transparent) */
  .faq-container {
      margin: 30px 0;
  }

  .faq-item {
      margin-bottom: 12px;
      border: 1px solid rgba(0, 201, 100, 0.4);
      border-radius: 16px;
      overflow: hidden;
      background: transparent; /* Transparan total tanpa warna */
  }

  .faq-question {
      width: 100%;
      text-align: left;
      padding: 18px 20px;
      background: transparent; /* Transparan total tanpa warna gradasi */
      border: none;
      border-bottom: 1px dashed rgba(0, 201, 100, 0.2);
      cursor: pointer;
      font-weight: 600;
      font-size: 16px;
      color: #1e1e1e;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.2s ease;
  }

  .faq-question:hover {
      background: rgba(0, 201, 100, 0.05);
      color: #00aeff;
  }

  .faq-question .icon {
      color: #00aeff;
      font-size: 22px;
      font-weight: 400;
  }

  .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: transparent; /* Transparan total tanpa warna */
  }

  .faq-answer p {
      margin: 15px 0;
      color: #2e2e2e;
  }

  .faq-answer.open {
      max-height: 200px;
      padding: 0 20px;
  }

  /* Reviews Section (Fully Transparent) */
  .reviews-section {
      margin: 40px 0;
  }

  .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 25px;
  }

  .review-card {
      border-radius: 20px;
      padding: 20px;
      position: relative;
      overflow: hidden;
      z-index: 1;
      border: 1px solid rgba(0, 201, 100, 0.4);
      background: transparent; /* Transparan total tanpa warna */
      box-shadow: none;
  }
  
  /* Menghilangkan efek liquid/metal di testimoni */
  .review-card::before,
  .review-card::after {
      display: none;
  }
  
  .review-card > * {
      position: relative;
      z-index: 3;
  }

  .review-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
  }

  .review-name {
      font-weight: 700;
      color: #1e1e1e;
  }

  .review-stars {
      color: #00aeff;
      letter-spacing: 2px;
  }

  .review-text {
      color: #2e2e2e;
      font-size: 14px;
      line-height: 1.7;
      margin: 10px 0;
      font-style: italic;
  }

  .review-date {
      color: #777;
      font-size: 12px;
      display: block;
      margin-top: 10px;
  }

  /* CTA Buttons */
  .cta-section {
      text-align: center;
      margin: 40px 0 20px;
  }

  .cta-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
  }

  .btn {
      display: inline-block;
      padding: 14px 40px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: 1px;
      text-decoration: none;
      transition: all 0.2s ease;
      border: 1px solid;
      min-width: 150px;
  }

  .btn-login {
      background: transparent;
      color: #1e1e1e;
      border-color: #00aeff;
  }

  .btn-login:hover {
      background: rgba(0, 201, 100, 0.1);
      border-color: #0066ff;
      color: #00aeff;
  }

  .btn-register {
      background: #00aeff;
      color: #fff;
      border-color: #00aeff;
  }

  .btn-register:hover {
      background: #0066ff;
      border-color: #0066ff;
      color: #1e1e1e;
  }

  /* Responsive */
  @media (max-width: 768px) {
      .container {
          padding: 25px;
      }

      .info-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .reviews-grid {
          grid-template-columns: 1fr;
      }

      h1 {
          font-size: 24px;
      }
  }
