.page-blog {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main color, suitable for dark background */
  background-color: #0A0A0A; /* Background color */
}

/* Hero Section */
.page-blog__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
}

.page-blog__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  color: #FFF6D6;
}

.page-blog__main-title {
  font-size: clamp(2em, 4vw, 3em);
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD36B;
  letter-spacing: 1px;
}

.page-blog__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

/* General Section Styling */
.page-blog__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  color: #FFD36B;
}

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

/* Buttons */
.page-blog__btn-primary,
.page-blog__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: 2px solid transparent;
}

.page-blog__btn-primary:hover {
  background: linear-gradient(180deg, #FFE699 0%, #E6B02A 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 211, 107, 0.4);
}

.page-blog__btn-secondary {
  background: #111111;
  color: #FFD36B;
  border: 2px solid #3A2A12;
  margin-left: 15px;
}

.page-blog__btn-secondary:hover {
  background: #222222;
  color: #FFE699;
  border-color: #F2C14E;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-blog__introduction {
  padding: 60px 0;
  background-color: #111111;
  color: #FFF6D6;
}

.page-blog__introduction p {
  margin-bottom: 20px;
  font-size: 1.05em;
  text-align: justify;
}

/* Recent Posts Section */
.page-blog__recent-posts {
  padding: 60px 0;
  background-color: #0A0A0A;
}