/* style/blog-article-3.css */
.page-blog-article-3 {
  font-family: Arial, sans-serif;
  color: #333333;
  background-color: #E5E5E5;
}

.page-blog-article-3 .hero-section {
  background: linear-gradient(135deg, #333333, #E5E5E5);
  padding: 80px 0;
  text-align: center;
}

.page-blog-article-3 .content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.page-blog-article-3 h1,
.page-blog-article-3 h2,
.page-blog-article-3 h3 {
  color: #333333;
  font-weight: bold;
}

.page-blog-article-3 p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-blog-article-3 .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333333;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.page-blog-article-3 .btn:hover {
  background-color: #555555;
}

.page-blog-article-3 img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .page-blog-article-3 .hero-section {
    padding: 40px 0;
  }
  .page-blog-article-3 .content-area {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-article-3 h1,
  .page-blog-article-3 h2,
  .page-blog-article-3 h3 {
    font-size: 1.5em;
  }
  .page-blog-article-3 .btn {
    padding: 8px 16px;
  }
}