.page-bn-c {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #1A2B3C;
  line-height: 1.6;
}

.page-bn-c__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #1A2B3C 0%, #0D1C2B 100%);
}

.page-bn-c__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-bn-c__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-bn-c__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.page-bn-c__hero-image img:hover {
  transform: scale(1.03);
}

.page-bn-c__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.page-bn-c__hero-content h1 {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-bn-c__hero-content p {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-bn-c__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #1A2B3C;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
}

.page-bn-c__cta-button:hover {
  background: linear-gradient(90deg, #FFA500, #FFD700);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-bn-c__cta-button--small {
  padding: 12px 30px;
  font-size: 1.1em;
}

.page-bn-c__section {
  padding: 80px 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-bn-c__section:last-of-type {
  border-bottom: none;
}

.page-bn-c__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-bn-c__container h2 {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 40px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.page-bn-c__container h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-bn-c__container p {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-bn-c__image-wrapper {
  margin: 40px auto;
  max-width: 1000px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-bn-c__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-bn-c__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 800px;
  text-align: left;
}

.page-bn-c__list li {
  background-color: #2A3E50;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 1.1em;
  color: #FFD700;
  border-left: 5px solid #FFD700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-bn-c__list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
}

.page-bn-c__list li strong {
  color: #FFD700;
}

.page-bn-c__numbered-list {
  list-style: decimal;
  padding-left: 40px;
  margin: 0 auto 30px;
  max-width: 800px;
  text-align: left;
  color: #E0E0E0;
}

.page-bn-c__numbered-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-bn-c__numbered-list li strong {
  color: #FFD700;
}

.page-bn-c__inline-link {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.2s ease;
}

.page-bn-c__inline-link:hover {
  color: #FFA500;
}

.page-bn-c__faq-item {
  background-color: #2A3E50;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: left;
  overflow: hidden;
}

.page-bn-c__faq-question {
  display: block;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
  background-color: #2A3E50;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-bn-c__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
}

.page-bn-c__faq-item.active .page-bn-c__faq-question::after {
  content: '-';
}

.page-bn-c__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-bn-c__faq-item.active .page-bn-c__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 0 25px 20px;
}

.page-bn-c__faq-question:hover {
  background-color: #3A526A;
}

.page-bn-c__cta-final {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  padding: 80px 20px;
  border-radius: 0;
  text-align: center;
}

.page-bn-c__cta-final-content h2 {
  color: #1A2B3C;
  font-size: 2.8em;
  margin-bottom: 25px;
  text-shadow: none;
}

.page-bn-c__cta-final-content p {
  color: #333333;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-bn-c__cta-final .page-bn-c__cta-button {
  background: #1A2B3C;
  color: #FFD700;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-bn-c__cta-final .page-bn-c__cta-button:hover {
  background: #0D1C2B;
  color: #FFA500;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-bn-c__hero-content h1 {
    font-size: 2.8em;
  }
  .page-bn-c__hero-content p {
    font-size: 1.1em;
  }
  .page-bn-c__container h2 {
    font-size: 2.2em;
  }
  .page-bn-c__cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-bn-c__hero-section {
    padding: 40px 15px 60px;
  }
  .page-bn-c__hero-content h1 {
    font-size: 2.2em;
  }
  .page-bn-c__hero-content p {
    font-size: 1em;
  }
  .page-bn-c__cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-bn-c__section {
    padding: 60px 15px;
  }
  .page-bn-c__container h2 {
    font-size: 1.8em;
  }
  .page-bn-c__container h3 {
    font-size: 1.5em;
  }
  .page-bn-c__container p, .page-bn-c__list li, .page-bn-c__numbered-list li {
    font-size: 0.95em;
  }
  .page-bn-c__list {
    max-width: 100%;
    padding: 0 10px;
  }
  .page-bn-c__numbered-list {
    padding-left: 25px;
  }
  .page-bn-c__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-bn-c__faq-answer {
    padding: 0 20px 15px;
  }
  .page-bn-c__cta-final-content h2 {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-bn-c__hero-content h1 {
    font-size: 1.8em;
  }
  .page-bn-c__hero-content p {
    font-size: 0.9em;
  }
  .page-bn-c__cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-bn-c__container h2 {
    font-size: 1.6em;
  }
  .page-bn-c__container h3 {
    font-size: 1.3em;
  }
  .page-bn-c__list li {
    padding: 15px 20px;
  }
  .page-bn-c__cta-final-content h2 {
    font-size: 1.8em;
  }
}