.page-blog-article-5 {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
  padding: 20px 0;
}

.page-blog-article-5__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.page-blog-article-5__header {
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-article-5__title {
  font-size: 2.5em; /* H1 */
  color: #003366;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-article-5__meta {
  font-size: 0.9em;
  color: #666;
  font-style: italic;
  margin-bottom: 20px;
}

.page-blog-article-5__hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
}

.page-blog-article-5__content p {
  margin-bottom: 1.5em; /* Paragraph spacing */
  font-size: 1.1em; /* 16-18px range */
  color: #333;
}

.page-blog-article-5__content strong {
  color: #003366;
}

.page-blog-article-5__heading {
  font-size: 2em; /* H2 */
  color: #003366;
  margin-top: 2.5em;
  margin-bottom: 1em;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-blog-article-5__sub-heading {
  font-size: 1.5em; /* H3 */
  color: #003366;
  margin-top: 2em;
  margin-bottom: 1em;
}

.page-blog-article-5__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1em auto; /* Centered, 1em vertical spacing */
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-blog-article-5__blockquote {
  border-left: 5px solid #FFD700;
  background-color: #f0f8ff;
  padding: 15px 20px;
  margin: 2em 0;
  font-style: italic;
  color: #555;
  border-radius: 4px;
}

.page-blog-article-5__blockquote footer {
  margin-top: 10px;
  font-size: 0.9em;
  text-align: right;
  color: #777;
}

.page-blog-article-5__list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 10px;
  margin-bottom: 1.5em;
}

.page-blog-article-5__list li {
  margin-bottom: 0.8em;
  color: #333;
  font-size: 1.05em;
}

.page-blog-article-5__cta {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background-color: #003366;
  border-radius: 8px;
  color: #ffffff;
}

.page-blog-article-5__cta p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-blog-article-5__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 0 10px;
}

.page-blog-article-5__button--primary {
  background-color: #FFD700;
  color: #003366;
  border: 2px solid #FFD700;
}

.page-blog-article-5__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-blog-article-5__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-blog-article-5__button--secondary:hover {
  background-color: #FFD700;
  color: #003366;
  transform: translateY(-2px);
}

.page-blog-article-5__back-link {
  text-align: center;
  margin-top: 40px;
}

.page-blog-article-5__link {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog-article-5__link:hover {
  color: #FFD700;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-article-5__title {
    font-size: 2em;
  }

  .page-blog-article-5__heading {
    font-size: 1.7em;
  }

  .page-blog-article-5__sub-heading {
    font-size: 1.3em;
  }

  .page-blog-article-5__content p {
    font-size: 1em;
  }

  .page-blog-article-5__button {
    padding: 10px 20px;
    font-size: 1em;
    margin: 5px;
  }

  .page-blog-article-5__cta {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-article-5__title {
    font-size: 1.8em;
  }

  .page-blog-article-5__heading {
    font-size: 1.5em;
  }

  .page-blog-article-5__sub-heading {
    font-size: 1.2em;
  }

  .page-blog-article-5__button {
    display: block;
    width: 90%;
    margin: 10px auto;
  }
}