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

.page-bn-c-strategy-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-bn-c-strategy-tips__hero {
  background: linear-gradient(135deg, #FFD700, #000080);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-bn-c-strategy-tips__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-bn-c-strategy-tips__highlight {
  color: #FFD700;
}

.page-bn-c-strategy-tips__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #eee;
}

.page-bn-c-strategy-tips__subtitle a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-bn-c-strategy-tips__subtitle a:hover {
  text-decoration: underline;
}

.page-bn-c-strategy-tips__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-bn-c-strategy-tips__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  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-strategy-tips__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark Blue */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-bn-c-strategy-tips__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-bn-c-strategy-tips__btn--secondary {
  background-color: #000080; /* Dark Blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-bn-c-strategy-tips__btn--secondary:hover {
  background-color: #000066;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-bn-c-strategy-tips__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
}

.page-bn-c-strategy-tips__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-bn-c-strategy-tips__section-title {
  font-size: 2.5em;
  color: #000080;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-bn-c-strategy-tips__section-title a {
  color: #000080;
  text-decoration: none;
}

.page-bn-c-strategy-tips__section-title a:hover {
  text-decoration: underline;
}

.page-bn-c-strategy-tips__intro p {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #555;
}

.page-bn-c-strategy-tips__article {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-bn-c-strategy-tips__article-title {
  font-size: 1.8em;
  color: #000080;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-bn-c-strategy-tips__article p {
  font-size: 1.05em;
  color: #444;
}

.page-bn-c-strategy-tips__article p a {
  color: #000080;
  text-decoration: none;
  font-weight: bold;
}

.page-bn-c-strategy-tips__article p a:hover {
  text-decoration: underline;
}

.page-bn-c-strategy-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-bn-c-strategy-tips__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-bn-c-strategy-tips__list li {
  background-color: #f9f9f9;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-bn-c-strategy-tips__list li strong {
  color: #000080;
}

.page-bn-c-strategy-tips__cta-bottom {
  background-color: #000080;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-bn-c-strategy-tips__cta-bottom .page-bn-c-strategy-tips__section-title {
  color: #FFD700;
}

.page-bn-c-strategy-tips__cta-bottom .page-bn-c-strategy-tips__section-title::after {
  background-color: #fff;
}

.page-bn-c-strategy-tips__cta-bottom p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #eee;
}

.page-bn-c-strategy-tips__cta-bottom p a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-bn-c-strategy-tips__cta-bottom p a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-bn-c-strategy-tips__hero {
    padding: 60px 0;
    min-height: 300px;
  }

  .page-bn-c-strategy-tips__title {
    font-size: 2.5em;
  }

  .page-bn-c-strategy-tips__subtitle {
    font-size: 1em;
  }

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

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

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

  .page-bn-c-strategy-tips__list li {
    font-size: 1em;
  }

  .page-bn-c-strategy-tips__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-bn-c-strategy-tips__hero {
    padding: 40px 0;
    min-height: 250px;
  }

  .page-bn-c-strategy-tips__title {
    font-size: 1.8em;
  }

  .page-bn-c-strategy-tips__subtitle {
    font-size: 0.9em;
  }

  .page-bn-c-strategy-tips__btn {
    padding: 10px 20px;
    font-size: 0.9em;
    width: 100%;
  }

  .page-bn-c-strategy-tips__section-title {
    font-size: 1.7em;
  }

  .page-bn-c-strategy-tips__article-title {
    font-size: 1.3em;
  }
}