.page-blog-article-1 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

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

.page-blog-article-1__header {
  text-align: center;
  margin-bottom: 2em;
}

.page-blog-article-1__title {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 0.5em;
  line-height: 1.2;
}

.page-blog-article-1__meta {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 1.5em;
}

.page-blog-article-1__category-link {
  color: #ffc107;
  text-decoration: none;
}

.page-blog-article-1__category-link:hover {
  text-decoration: underline;
}

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

.page-blog-article-1__section {
  margin-bottom: 2.5em;
}

.page-blog-article-1__heading {
  font-size: 2em;
  color: #007bff;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 0.5em;
}

.page-blog-article-1__sub-heading {
  font-size: 1.5em;
  color: #333;
  margin-top: 1.2em;
  margin-bottom: 0.7em;
}

.page-blog-article-1__paragraph {
  font-size: 1.125em; /* 18px */
  margin-bottom: 1.5em; /* 1.5em spacing */
  line-height: 1.7;
  color: #333;
}

.page-blog-article-1__list {
  list-style-type: disc;
  margin-left: 2em;
  margin-bottom: 1.5em;
  font-size: 1.125em;
  color: #333;
}

.page-blog-article-1__list-item {
  margin-bottom: 0.5em;
}

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

.page-blog-article-1__blockquote {
  border-left: 5px solid #ffc107;
  background-color: #fffde7;
  padding: 1em 1.5em;
  margin: 2em 0;
  font-style: italic;
  color: #555;
  border-radius: 4px;
}

.page-blog-article-1__blockquote p {
  margin: 0;
  font-size: 1.1em;
}

.page-blog-article-1__link-official {
  color: #007bff;
  text-decoration: underline;
}

.page-blog-article-1__link-official:hover {
  color: #0056b3;
}

.page-blog-article-1__call-to-action {
  text-align: center;
  margin-top: 3em;
  margin-bottom: 2em;
}

.page-blog-article-1__button {
  display: inline-block;
  padding: 0.8em 1.8em;
  margin: 0 0.5em;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1em;
  cursor: pointer;
}

.page-blog-article-1__button--primary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-blog-article-1__button--primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-blog-article-1__button--secondary {
  background-color: #ffffff;
  color: #007bff;
  border: 2px solid #007bff;
}

.page-blog-article-1__button--secondary:hover {
  background-color: #e9f5ff;
  color: #0056b3;
  transform: translateY(-2px);
}

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

  .page-blog-article-1__heading {
    font-size: 1.8em;
  }

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

  .page-blog-article-1__paragraph, .page-blog-article-1__list {
    font-size: 1em;
  }

  .page-blog-article-1__container {
    padding: 1.5em;
  }

  .page-blog-article-1__button {
    display: block;
    margin: 1em auto;
    width: 80%;
  }
}

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

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

  .page-blog-article-1__sub-heading {
    font-size: 1.1em;
  }

  .page-blog-article-1__container {
    padding: 1em;
  }
}