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

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

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

.page-blog__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-blog__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.page-blog__main-title {
  font-size: 3.2rem;
  font-weight: bold;
  color: #FFF6D6;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog__intro-text {
  font-size: 1.2rem;
  color: #CCC;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for contrast */
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-blog__cta-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog__content-section {
  padding: 60px 0;
}

.page-blog__section-title {
  font-size: 2.5rem;
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog__section-description {
  font-size: 1.1rem;
  color: #AAA;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-blog__article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog__article-card {
  background: #111111; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12; /* Border color */
}

.page-blog__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog__card-image-wrapper {
  height: 200px;
  overflow: hidden;
}

.page-blog__card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog__card-content {
  padding: 25px;
}

.page-blog__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog__card-title a {
  color: #FFF6D6; /* Text Main */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog__card-title a:hover {
  color: #F2C14E; /* Main color */
}

.page-blog__card-excerpt {
  font-size: 1rem;
  color: #AAA;
  margin-bottom: 15px;
}

.page-blog__article-date {
  font-size: 0.9rem;
  color: #888;
  display: block;
  margin-bottom: 15px;
}

.page-blog__read-more-link {
  color: #FFD36B; /* Accent color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog__read-more-link:hover {
  color: #F2C14E; /* Main color */
  text-decoration: underline;
}

.page-blog__view-all-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-blog__view-all-btn {
  padding: 12px 30px;
  font-size: 1.1rem;
}

.page-blog__why-follow-us {
  background-color: #0A0A0A;
}

.page-blog__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog__feature-item {
  background: #111111; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12; /* Border color */
}

.page-blog__feature-item img {
  width: 100%; /* Ensure images are not too small */
  height: auto;
  max-width: 250px; /* Constrain feature image size */
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 5px;
}

.page-blog__feature-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog__feature-item p {
  font-size: 1rem;
  color: #AAA;
}

.page-blog__faq-section {
  padding-bottom: 80px;
}

.page-blog__faq-list {
  margin-top: 40px;
}

details.page-blog__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
}

details.page-blog__faq-item summary.page-blog__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  background: #111111;
}

details.page-blog__faq-item summary.page-blog__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog__faq-item summary.page-blog__faq-question:hover {
  background: #1A1A1A;
  border-color: #F2C14E; /* Main color */
}

.page-blog__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF6D6; /* Text Main */
}

.page-blog__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFD36B; /* Accent color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-blog__faq-item .page-blog__faq-answer {
  padding: 0 25px 25px;
  background: #0A0A0A; /* Background */
  border-radius: 0 0 10px 10px;
}

.page-blog__faq-answer p {
  color: #AAA;
  font-size: 1rem;
}

.page-blog__join-us {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
  background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
  border-top: 1px solid #3A2A12;
}

.page-blog__join-us-content {
  max-width: 900px;
}

.page-blog__join-now-btn {
  margin-right: 20px;
}

.page-blog__view-promo-btn {
  background: transparent;
  border: 2px solid #FFD36B; /* Accent color */
  color: #FFD36B;
}

.page-blog__view-promo-btn:hover {
  background: #FFD36B;
  color: #111111;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog__main-title {
    font-size: 2.8rem;
  }
  .page-blog__section-title {
    font-size: 2.2rem;
  }
  .page-blog__card-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .page-blog img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog__hero-section {
    padding-top: 10px !important; /* body handles header offset */
    padding-bottom: 40px;
  }
  .page-blog__hero-image-wrapper {
    max-height: 300px;
  }
  .page-blog__main-title {
    font-size: 2.2rem;
  }
  .page-blog__intro-text {
    font-size: 1rem;
  }
  .page-blog__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog__join-now-btn {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-blog__section-title {
    font-size: 2rem;
  }
  .page-blog__section-description {
    font-size: 0.95rem;
  }
  .page-blog__article-grid {
    grid-template-columns: 1fr;
  }
  .page-blog__card-content {
    padding: 20px;
  }
  .page-blog__card-title {
    font-size: 1.2rem;
  }
  .page-blog__feature-grid {
    grid-template-columns: 1fr;
  }
  details.page-blog__faq-item summary.page-blog__faq-question {
    padding: 15px 20px;
  }
  .page-blog__faq-qtext {
    font-size: 1rem;
  }
  .page-blog__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  details.page-blog__faq-item .page-blog__faq-answer {
    padding: 0 20px 20px;
  }
  .page-blog__container,
  .page-blog__content-section,
  .page-blog__latest-articles,
  .page-blog__why-follow-us,
  .page-blog__faq-section,
  .page-blog__join-us {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog__view-all-wrapper {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  .page-blog__join-us-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-blog__main-title {
    font-size: 1.8rem;
  }
  .page-blog__section-title {
    font-size: 1.8rem;
  }
  .page-blog__cta-button {
    font-size: 15px;
    padding: 10px 20px;
  }
  .page-blog__hero-image-wrapper {
    max-height: 200px;
  }
}