/* ===== Premium FAQ ===== */
.faq-pro{
  max-width: 920px;
  margin: 18px auto 35px;
  padding: 0 12px;
}

.faq-item{
  background: linear-gradient(180deg,#ff4b14,#ff2f00);
  border-radius: 18px;
  margin: 14px 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  border: 1px solid rgba(255,255,255,.18);
}

.faq-q{
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 20px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.faq-text{
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.faq-icon{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  position: relative;
  flex-shrink: 0;
}

/* plus sign */
.faq-icon::before,
.faq-icon::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background:#ff2f00;
  border-radius: 10px;
}
.faq-icon::before{ width: 18px; height: 3px; }
.faq-icon::after{ width: 3px; height: 18px; }

.faq-a{
  max-height: 0;
  opacity: 0;
  transition: max-height .35s ease, opacity .25s ease;
}

.faq-a-inner{
  padding: 0 22px 22px 76px; /* icon alignment */
  color: rgba(255,255,255,.95);
  font-size: 16px;
  line-height: 1.75;
}

/* open state */
.faq-item.open .faq-a{
  max-height: 400px; /* enough for most answers */
  opacity: 1;
}

.faq-item.open .faq-icon::after{
  height: 0; /* plus becomes minus */
}

/* Mobile */
@media (max-width: 768px){
  .faq-text{font-size: 17px;}
  .faq-q{padding: 16px 16px;}
  .faq-icon{width: 38px; height: 38px;}
  .faq-a-inner{padding: 0 16px 18px 64px;}
}

.verified{
  margin-top:22px;
  color:#fff;
}

.verified h3{
  color:#fff;
  font-size:18px;
  margin-bottom:12px;
}

.verified-logos{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.verified-logos span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,0.12);
  padding:8px 14px;
  border-radius:20px;
  font-size:14px;
  color:#fff;
}

.verified-logos i{
  color:#fff;
  font-size:16px;
}

a {
  color: #182e7c;
  text-decoration: none;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  text-align: left;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
}

th,
td {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #4caf50;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
}

tr:hover {
  background-color: #f1f1f1;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  table {
    font-size: 14px;
    white-space: nowrap;
    width: 95% !important;
    margin: auto;
  }
  th,
  td {
    padding: 10px;
  }
  ol {
    width: 90%;
    margin: auto;
  }
}
.banner {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.buttons_box .btn_download img{
    margin-right:10px;
}
footer {
  text-align: center;
  width: 100%;
}
.footer_pages {
  width: 50%;
  margin: auto;
  display: flex;
  justify-content: space-around;
  text-align: center;
  font-size: 18px;
  padding: 20px;
  flex-wrap: wrap;
}
.footer_pages a {
  color: #fff;
}
.social_icon {
  text-align: center;
  padding: 10px;
}
.fouro {
  width: 100%;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.table_of_contents button{
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  border: none;
  font-size: 20px;
}
.table_of_contents ul li{
  line-height: 25px;
}
.text-center{
  text-align: center;
}
@media screen and (max-width: 810px) {
  .buttons_box a{
      width:49%;
      margin-top: 10px;
  }
}

@media screen and (max-width: 550px) {
  .footer_pages {
    width: 100%;
    padding: 0px 5px;
  }
  .footer_pages a {
    margin: 15px 5px 0px;
  }
  footer p {
    margin-top: 10px;
  }
  .single_page_container {
    width: 90%;
    margin: 0 auto;
  }
  .single_page_container h1 {
    font-size: 16px;
  }
  .single_page_container p {
    font-size: 12px;
  }
  .single_page_container p,
  .single_page_container h1 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.hero-section {
  position: relative;
  background: #ffffff;
  color: #111;
  padding: 55px 20px;
  overflow: hidden;
}

.background-shape {
  position: absolute;
  top: -120px;
  right: -160px;
  width: 680px;
  height: 680px;
  background: #ff4a00;
  border-radius: 80px;
  transform: rotate(18deg);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left {
  flex: 1 1 520px;
}

.hero-left h1 {
  font-size: 3rem;
  margin-bottom: 12px;
  font-weight: 800;
  line-height: 1.1;
  color: #111;
}

.version {
  font-size: 1.05rem;
  margin-bottom: 22px;
  color: #444;
  max-width: 620px;
  line-height: 1.7;
}

.btn-download {
  display: inline-block;
  background: #ff4a00;
  color: #fff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: .25s ease;
  font-size: 1rem;
  box-shadow: 0 10px 26px rgba(255,74,0,.35);
}

.btn-download:hover {
  transform: translateY(-2px);
  opacity: .95;
}

.verified h3 {
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 10px;
  font-weight: 700;
}

.verified-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.secure-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.hero-right {
  flex: 1 1 620px;
  text-align: center;
  position: relative;
}

.hero-right img {
  max-width: 100%;
  height: auto;
  max-height: 750px;
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(0,0,0,.15);
  background: rgba(255,255,255,.25);
  padding: 25px;
}
/* Responsive */
@media (max-width: 768px) {
  .hero-section { padding: 28px 15px; }
  .background-shape { width: 520px; height: 520px; top: -160px; right: -220px; }
  .hero-content { flex-direction: column; text-align: center; }
  .hero-left h1 { font-size: 2rem; }
  .btn-download { margin: 0 auto; }
  .verified-logos { justify-content: center; }
  .hero-right img { max-width: 85%; max-height: 340px; margin-top: 18px; }
}
/* ===== FAQ mobile fix (works with your current h3.mt_5 + p.faq_ans) ===== */
.faqs_con{
  margin: 0 !important;
  padding: 0 !important;
}

.faqs_con .container{
  padding-left: 14px !important;
  padding-right: 14px !important;
}

/* Question */
.faqs_con h3.mt_5{
  margin: 14px 0 0 0 !important;
  padding: 14px 14px !important;
  background: #ff3c00;
  color: #fff !important;
  border-radius: 14px 14px 0 0;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.25;
}

/* Answer */
.faqs_con p.faq_ans{
  margin: 0 0 14px 0 !important;
  padding: 0 14px 14px 14px !important;
  background: #ff3c00;
  color: rgba(255,255,255,.95) !important;
  border-radius: 0 0 14px 14px;
  font-size: 15px !important;
  line-height: 1.65;
}

/* Remove weird bullets/spacing near FAQ */
.faqs_con h3.mt_5::marker,
.faqs_con p.faq_ans::marker{
  content: "";
}

/* Just in case some theme adds list-style around */
.faqs_con ul, .faqs_con ol{
  list-style: none !important;
  padding-left: 0 !important;
}
.ver-canal-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  padding:12px 28px;
  background:#1b5e20;        /* green */
  color:#fff;
  font-size:16px;
  font-weight:700;
  text-decoration:none;

  border-radius:8px;
  border:2px solid #0f3d13;
  box-shadow:0 4px 10px rgba(0,0,0,.2);

  transition:all .25s ease;
}

.ver-canal-btn:hover{
  background:#2e7d32;
  transform:translateY(-2px);
}

.ver-canal-btn:active{
  transform:translateY(0);
}

