.page-live-streaming-tech-faq {
  font-family: 'Arial', sans-serif;
  color: #0A244A; /* Dark Blue for general text on light background */
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-live-streaming-tech-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-live-streaming-tech-faq__hero-section {
  background: linear-gradient(135deg, #0A244A 0%, #1A3F70 100%); /* Dark blue gradient */
  color: #FFFFFF; /* White text on dark background */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-live-streaming-tech-faq__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-live-streaming-tech-faq__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

.page-live-streaming-tech-faq__hero-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
}

.page-live-streaming-tech-faq__content-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-live-streaming-tech-faq__section-title {
  font-size: 2.5em;
  color: #0A244A; /* Dark blue for section titles */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-live-streaming-tech-faq__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-live-streaming-tech-faq__section-subtitle {
  font-size: 1.8em;
  color: #0A244A;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
  border-left: 5px solid #FFD700; /* Gold accent */
  padding-left: 15px;
}

.page-live-streaming-tech-faq p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333; /* Slightly lighter dark text for readability */
}

.page-live-streaming-tech-faq ul,
.page-live-streaming-tech-faq ol {
  margin-bottom: 15px;
  padding-left: 25px;
  list-style-type: disc;
}

.page-live-streaming-tech-faq ol {
  list-style-type: decimal;
}

.page-live-streaming-tech-faq li {
  margin-bottom: 8px;
  color: #333333;
}

.page-live-streaming-tech-faq strong {
  color: #0A244A;
}

.page-live-streaming-tech-faq__tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-live-streaming-tech-faq__tech-item {
  background-color: #f2f7ff; /* Light blue background for tech items */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live-streaming-tech-faq__tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-live-streaming-tech-faq__tech-item ul {
  list-style-type: none;
  padding-left: 0;
}

.page-live-streaming-tech-faq__tech-item ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 1em;
  color: #0A244A; /* Dark blue for list items in tech section */
}

.page-live-streaming-tech-faq__tech-item ul li::before {
  content: '✔';
  color: #FFD700; /* Gold checkmark */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-live-streaming-tech-faq__tech-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-live-streaming-tech-faq__faq-list {
  margin-top: 30px;
}

.page-live-streaming-tech-faq__faq-item {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-live-streaming-tech-faq__faq-question {
  font-size: 1.3em;
  color: #0A244A;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-live-streaming-tech-faq__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-live-streaming-tech-faq__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-live-streaming-tech-faq__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none; /* Hidden by default, toggled by JS */
  margin-top: 10px;
}

.page-live-streaming-tech-faq__faq-answer.active {
  display: block;
}

.page-live-streaming-tech-faq__call-to-action {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #0A244A; /* Dark blue background */
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-live-streaming-tech-faq__call-to-action p {
  color: #FFFFFF;
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-live-streaming-tech-faq__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin: 0 10px;
}

.page-live-streaming-tech-faq__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A244A; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-live-streaming-tech-faq__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-live-streaming-tech-faq__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark blue background */
  border: 2px solid #FFD700;
}

.page-live-streaming-tech-faq__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A244A;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-live-streaming-tech-faq__hero-title {
    font-size: 3em;
  }
  .page-live-streaming-tech-faq__section-title {
    font-size: 2em;
  }
  .page-live-streaming-tech-faq__section-subtitle {
    font-size: 1.5em;
  }
  .page-live-streaming-tech-faq__tech-grid {
    grid-template-columns: 1fr;
  }
  .page-live-streaming-tech-faq__call-to-action {
    padding: 30px 20px;
  }
  .page-live-streaming-tech-faq__btn {
    display: block;
    margin: 15px auto;
  }
}

@media (max-width: 768px) {
  .page-live-streaming-tech-faq__hero-title {
    font-size: 2.5em;
  }
  .page-live-streaming-tech-faq__hero-subtitle {
    font-size: 1.1em;
  }
  .page-live-streaming-tech-faq__section-title {
    font-size: 1.8em;
  }
  .page-live-streaming-tech-faq__section-subtitle {
    font-size: 1.3em;
  }
  .page-live-streaming-tech-faq p,
  .page-live-streaming-tech-faq li {
    font-size: 1em;
  }
}

@media (max-width: 576px) {
  .page-live-streaming-tech-faq__hero-title {
    font-size: 2em;
  }
  .page-live-streaming-tech-faq__hero-subtitle {
    font-size: 1em;
  }
  .page-live-streaming-tech-faq__section-title {
    font-size: 1.5em;
  }
  .page-live-streaming-tech-faq__section-title::after {
    width: 60px;
  }
  .page-live-streaming-tech-faq__section-subtitle {
    font-size: 1.2em;
  }
  .page-live-streaming-tech-faq__tech-item {
    padding: 20px;
  }
  .page-live-streaming-tech-faq__faq-question {
    font-size: 1.1em;
  }
  .page-live-streaming-tech-faq__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
}