/* style/blog-jun888-banca-new-features.css */

/* Base styles for the page */
.page-blog-jun888-banca-new-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: var(--site-bg); /* Inherit from shared.css */
}

.page-blog-jun888-banca-new-features__dark-bg {
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6;
}

.page-blog-jun888-banca-new-features__light-bg {
  background-color: #111111; /* Card BG */
  color: #FFF6D6;
}

.page-blog-jun888-banca-new-features__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
  padding-top: 10px; /* Small top padding as body already handles header offset */
  background-color: #0A0A0A;
}

.page-blog-jun888-banca-new-features__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.page-blog-jun888-banca-new-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-blog-jun888-banca-new-features__hero-content {
  max-width: 960px;
  width: 100%;
  text-align: center;
  padding: 30px 20px;
  box-sizing: border-box;
}

.page-blog-jun888-banca-new-features__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-jun888-banca-new-features__description {
  font-size: 1.1rem;
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-jun888-banca-new-features__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-jun888-banca-new-features__btn-primary,
.page-blog-jun888-banca-new-features__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-jun888-banca-new-features__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111;
  border: none;
}

.page-blog-jun888-banca-new-features__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  box-shadow: 0 0 15px #FFD36B;
}

.page-blog-jun888-banca-new-features__btn-secondary {
  background: transparent;
  color: #F2C14E;
  border: 2px solid #F2C14E;
}

.page-blog-jun888-banca-new-features__btn-secondary:hover {
  background-color: #F2C14E;
  color: #111111;
  box-shadow: 0 0 15px #F2C14E;
}

.page-blog-jun888-banca-new-features__content-area {
  max-width: 960px;
  margin: 0 auto;
  padding: 50px 20px;
  box-sizing: border-box;
}

.page-blog-jun888-banca-new-features__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #F2C14E;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-jun888-banca-new-features__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #F2C14E;
  border-radius: 2px;
}

.page-blog-jun888-banca-new-features__sub-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #FFD36B; /* Auxiliary color */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-jun888-banca-new-features__text-block {
  font-size: 1rem;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-blog-jun888-banca-new-features__highlight {
  color: #FFD36B;
  font-weight: bold;
}

.page-blog-jun888-banca-new-features__text-link {
  color: #F2C14E;
  text-decoration: none;
  font-weight: bold;
}

.page-blog-jun888-banca-new-features__text-link:hover {
  text-decoration: underline;
  color: #FFD36B;
}

.page-blog-jun888-banca-new-features__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-jun888-banca-new-features__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #FFF6D6;
}

.page-blog-jun888-banca-new-features__list-item::before {
  content: '👉'; /* Unicode arrow or other suitable icon */
  position: absolute;
  left: 0;
  color: #F2C14E;
  font-size: 1.2em;
  top: -2px;
}

.page-blog-jun888-banca-new-features__image-wrapper {
  margin: 30px auto;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-jun888-banca-new-features__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-jun888-banca-new-features__faq-list {
  margin-top: 30px;
}

.page-blog-jun888-banca-new-features__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-jun888-banca-new-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #FFD36B;
  cursor: pointer;
  background-color: #1a1a1a;
  border-bottom: 1px solid #3A2A12;
}

.page-blog-jun888-banca-new-features__faq-item[open] > .page-blog-jun888-banca-new-features__faq-question {
  background-color: #222222;
  color: #F2C14E;
}

.page-blog-jun888-banca-new-features__faq-question:hover {
  background-color: #222222;
}

.page-blog-jun888-banca-new-features__faq-qtext {
  flex-grow: 1;
}

.page-blog-jun888-banca-new-features__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-jun888-banca-new-features__faq-item[open] .page-blog-jun888-banca-new-features__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-jun888-banca-new-features__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #FFF6D6;
  background-color: #111111;
}

.page-blog-jun888-banca-new-features__faq-answer p {
  margin-top: 0;
  margin-bottom: 10px;
}

.page-blog-jun888-banca-new-features__cta-buttons--bottom {
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-blog-jun888-banca-new-features__disclaimer {
  text-align: center;
  padding: 30px 20px;
  background-color: #0A0A0A;
  border-top: 1px solid #3A2A12;
}

.page-blog-jun888-banca-new-features__disclaimer-text {
  font-size: 0.9rem;
  color: #777;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-jun888-banca-new-features__hero-content {
    padding: 25px 15px;
  }
  .page-blog-jun888-banca-new-features__content-area {
    padding: 40px 15px;
  }
  .page-blog-jun888-banca-new-features__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-jun888-banca-new-features__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  }
  .page-blog-jun888-banca-new-features__sub-title {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  }
}

@media (max-width: 768px) {
  .page-blog-jun888-banca-new-features__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }
  .page-blog-jun888-banca-new-features__main-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }
  .page-blog-jun888-banca-new-features__description {
    font-size: 1rem;
  }
  .page-blog-jun888-banca-new-features__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-blog-jun888-banca-new-features__btn-primary,
  .page-blog-jun888-banca-new-features__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-blog-jun888-banca-new-features__content-area {
    padding: 30px 15px;
  }
  .page-blog-jun888-banca-new-features__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .page-blog-jun888-banca-new-features__sub-title {
    font-size: clamp(1.1rem, 4vw, 1.6rem);
  }
  .page-blog-jun888-banca-new-features p,
  .page-blog-jun888-banca-new-features li,
  .page-blog-jun888-banca-new-features__faq-answer p {
    font-size: 0.95rem;
  }
  .page-blog-jun888-banca-new-features__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-blog-jun888-banca-new-features__faq-answer {
    padding: 15px 20px;
  }
  /* Ensure images are responsive and do not overflow */
  .page-blog-jun888-banca-new-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-jun888-banca-new-features__image-wrapper,
  .page-blog-jun888-banca-new-features__hero-image-wrapper,
  .page-blog-jun888-banca-new-features__content-area,
  .page-blog-jun888-banca-new-features__hero-content,
  .page-blog-jun888-banca-new-features__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }
  .page-blog-jun888-banca-new-features__video-section,
  .page-blog-jun888-banca-new-features__video-container,
  .page-blog-jun888-banca-new-features__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-jun888-banca-new-features__video-section {
    padding-top: 10px !important;
  }
}