.elementor-50 .elementor-element.elementor-element-4f2abf8{--display:flex;}/* Start custom CSS for html, class: .elementor-element-9aa473b *//* ===== PAYMENT & FAQ PAGE STYLES ===== */
.payment-faq-page {
  background: #000;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.payment-faq-page .container {
  max-width: 1000px;
  margin: 0 auto;
}

/* --- JUDUL HALAMAN --- */
.payment-faq-page .page-title {
  font-size: 3.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient 3s ease infinite;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* --- SUBJUDUL --- */
.payment-faq-page .subtitle {
  font-size: 1.5rem;
  text-align: center;
  color: #ccc;
  margin-bottom: 50px;
  font-weight: 500;
}

/* --- SECTION TITLE (Payment, Invoices, Files & Designs) --- */
.payment-faq-page .section-title {
  font-size: 2rem;
  color: #fff;
  margin: 40px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #ff0096;
  display: inline-block;
}

/* --- FAQ ITEM --- */
.payment-faq-page .faq-item {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  border-left: 4px solid #ff0096;
  transition: all 0.3s ease;
}

.payment-faq-page .faq-item:hover {
  background: rgba(0, 0, 0, 0.7);
  border-left-color: #00ffff;
  transform: translateX(5px);
}

.payment-faq-page .faq-question {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.payment-faq-page .faq-answer {
  color: #ccc;
  line-height: 1.8;
  font-size: 1rem;
}

.payment-faq-page .faq-answer ul {
  margin: 15px 0;
  padding-left: 20px;
}

.payment-faq-page .faq-answer li {
  margin-bottom: 8px;
}

/* --- LIST STYLES --- */
.payment-faq-page ul {
  margin: 15px 0;
  padding-left: 20px;
}

.payment-faq-page li {
  color: #ccc;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.payment-faq-page li::before {
  content: '●';
  color: #ff0096;
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

/* --- HIGHLIGHT TEXT --- */
.payment-faq-page strong {
  color: #00ffff;
  font-weight: bold;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .payment-faq-page .page-title {
    font-size: 2.5rem;
  }

  .payment-faq-page .subtitle {
    font-size: 1.2rem;
  }

  .payment-faq-page .section-title {
    font-size: 1.5rem;
  }

  .payment-faq-page .faq-item {
    padding: 15px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e8545a4 *//* ===== FAQ EXPANDABLE STYLES ===== */
.payment-faq-page {
  background: #000;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.payment-faq-page .container {
  max-width: 1000px;
  margin: 0 auto;
}

/* --- JUDUL HALAMAN --- */
.payment-faq-page .page-title {
  font-size: 3.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient 3s ease infinite;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* --- SUBJUDUL --- */
.payment-faq-page .subtitle {
  font-size: 1.5rem;
  text-align: center;
  color: #ccc;
  margin-bottom: 50px;
  font-weight: 500;
}

/* --- SECTION TITLE --- */
.payment-faq-page .section-title {
  font-size: 2rem;
  color: #fff;
  margin: 40px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #ff0096;
  display: inline-block;
}

/* --- FAQ ITEM (EXPANDABLE) --- */
.payment-faq-page .faq-item {
  margin-bottom: 15px;
  border-left: 4px solid #ff0096;
  overflow: hidden;
  transition: all 0.3s ease;
}

.payment-faq-page .faq-question {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.payment-faq-page .faq-question:hover {
  background: rgba(0, 0, 0, 0.7);
  border-left-color: #00ffff;
}

.payment-faq-page .faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #ff0096;
}

.payment-faq-page .faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.payment-faq-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #ccc;
  line-height: 1.8;
  font-size: 1rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
}

.payment-faq-page .faq-item.active .faq-answer {
  max-height: 1000px; /* Sesuaikan dengan konten */
  padding: 20px;
}

.payment-faq-page .faq-answer ul {
  margin: 15px 0;
  padding-left: 20px;
}

.payment-faq-page .faq-answer li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.payment-faq-page .faq-answer li::before {
  content: '●';
  color: #ff0096;
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

/* --- HIGHLIGHT TEXT --- */
.payment-faq-page strong {
  color: #00ffff;
  font-weight: bold;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .payment-faq-page .page-title {
    font-size: 2.5rem;
  }

  .payment-faq-page .subtitle {
    font-size: 1.2rem;
  }

  .payment-faq-page .section-title {
    font-size: 1.5rem;
  }

  .payment-faq-page .faq-question {
    font-size: 1.1rem;
    padding: 12px 15px;
  }
}/* End custom CSS */