/* style/bn-c.css */
.page-bn-c {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-bn-c-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-bn-c-hero-section {
  background: linear-gradient(135deg, #CC0000 0%, #FFD700 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-bn-c-hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-bn-c-hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.5;
}

.page-bn-c-hero-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: auto;
  opacity: 0.7;
  z-index: 0;
}

.page-bn-c-hero-section > .page-bn-c-container {
  position: relative;
  z-index: 1;
}

.page-bn-c-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-bn-c-btn--primary {
  background-color: #FFD700;
  color: #CC0000;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-bn-c-btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-bn-c-btn--secondary {
  background-color: #CC0000;
  color: #fff;
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(204, 0, 0, 0.4);
}

.page-bn-c-btn--secondary:hover {
  background-color: #a30000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(204, 0, 0, 0.6);
}

.page-bn-c-section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-bn-c-section:nth-of-type(even) {
  background-color: #f2f2f2;
}

.page-bn-c-section-title {
  font-size: 2.5em;
  color: #CC0000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-bn-c-section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-bn-c-subsection-title {
  font-size: 1.8em;
  color: #CC0000;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-bn-c-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-bn-c-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-bn-c-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23CC0000"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444;
}

.page-bn-c-ordered-list {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-bn-c-ordered-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444;
}

.page-bn-c-ordered-list li strong {
  color: #CC0000;
}

.page-bn-c-link {
  color: #CC0000;
  text-decoration: underline;
}

.page-bn-c-link:hover {
  color: #FFD700;
}

.page-bn-c-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-bn-c-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-bn-c-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 5px solid #CC0000;
}

.page-bn-c-card:hover {
  transform: translateY(-5px);
}

.page-bn-c-card-title {
  font-size: 1.5em;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-bn-c-card-text {
  color: #666;
  font-size: 1em;
}

.page-bn-c-accordion {
  margin-top: 30px;
}

.page-bn-c-accordion-item {
  margin-bottom: 10px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.page-bn-c-accordion-header {
  background-color: #CC0000;
  color: #fff;
  padding: 15px 20px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-bn-c-accordion-header:hover {
  background-color: #a30000;
}

.page-bn-c-accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-bn-c-accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-bn-c-accordion-content {
  padding: 0 20px;
  background-color: #fdfdfd;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-bn-c-accordion-content.active {
  max-height: 200px; /* Adjust based on content */
  padding: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-bn-c-hero-title {
    font-size: 2.5em;
  }

  .page-bn-c-hero-description {
    font-size: 1em;
  }

  .page-bn-c-section-title {
    font-size: 2em;
  }

  .page-bn-c-subsection-title {
    font-size: 1.5em;
  }

  .page-bn-c-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-bn-c-hero-title {
    font-size: 2em;
  }

  .page-bn-c-hero-description {
    font-size: 0.9em;
  }

  .page-bn-c-btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-bn-c-section {
    padding: 40px 0;
  }

  .page-bn-c-section-title {
    font-size: 1.8em;
  }

  .page-bn-c-list li,
  .page-bn-c-ordered-list li,
  .page-bn-c-paragraph {
    font-size: 0.95em;
  }
}