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

.page-blog__section {
  padding: 60px 0;
  border-bottom: 1px solid #1f2229; /* Slightly lighter border for dark theme */
}

.page-blog__section:last-of-type {
  border-bottom: none;
}

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

.page-blog__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFB04D; /* Glow color for titles */
  position: relative;
  padding-bottom: 15px;
}

.page-blog__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FF8C1A; /* Primary color */
  border-radius: 2px;
}

.page-blog__section-title--light {
  color: #FFF3E6;
}

.page-blog__description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  color: #FFF3E6;
}

.page-blog__description--light {
  color: #FFF3E6;
}

/* Hero Section */
.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 */
  background: linear-gradient(180deg, #17191F 0%, #0D0E12 100%); /* Card BG to Background gradient */
  border-bottom: 1px solid #A84F0C; /* Border color */
}

.page-blog__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-blog__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 2px solid #A84F0C; /* Border color */
}

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

.page-blog__main-title {
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
  font-weight: 900;
  color: #FFB04D; /* Glow color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.5);
}

.page-blog__hero-content .page-blog__description {
  font-size: 19px;
  color: #FFF3E6;
  margin-bottom: 40px;
}

.page-blog__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  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, #D96800 0%, #FFA53A 100%); /* Reverse gradient on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog__cta-button--small {
  font-size: 16px;
  padding: 10px 25px;
}

.page-blog__cta-button--large {
  font-size: 22px;
  padding: 18px 45px;
}

.page-blog__cta-button--secondary {
  background: #1f2229; /* Dark background for secondary */
  border: 2px solid #FF8C1A; /* Primary color border */
  color: #FF8C1A;
}

.page-blog__cta-button--secondary:hover {
  background: #FF8C1A;
  color: #ffffff;
  border-color: #FFA53A;
}

/* Introduction Section */
.page-blog__introduction p {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
  color: #FFF3E6;
}

.page-blog__introduction p strong {
  color: #FF8C1A; /* Primary color for strong text */
}

/* Latest Posts Grid */
.page-blog__posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog__post-card {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #A84F0C; /* Border color */
}

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

.page-blog__post-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.page-blog__post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog__post-content {
  padding: 20px;
}

.page-blog__post-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFB04D; /* Glow color */
  line-height: 1.3;
}

.page-blog__post-excerpt {
  font-size: 16px;
  color: #FFF3E6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limit to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-blog__post-date {
  font-size: 14px;
  color: #FFA53A; /* Auxiliary color */
  font-style: italic;
}

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

/* Deep Dive Section */
.page-blog__deep-dive p {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
  color: #FFF3E6;
}

.page-blog__deep-dive ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-blog__deep-dive ul li {
  background-color: #1f2229; /* Slightly darker background for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid #FF8C1A; /* Primary color accent */
  font-size: 17px;
  color: #FFF3E6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog__deep-dive ul li strong {
  color: #FFB04D; /* Glow color for strong text */
}

/* News & Updates Section */
.page-blog__news-updates p {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
  color: #FFF3E6;
}

.page-blog__news-updates ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-blog__news-updates ul li {
  background-color: #1f2229; /* Slightly darker background for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid #FFA53A; /* Auxiliary color accent */
  font-size: 17px;
  color: #FFF3E6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog__news-updates ul li strong {
  color: #FFB04D; /* Glow color for strong text */
}

/* Promotions & Events Section */
.page-blog__promotions-events p {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
  color: #FFF3E6;
}

.page-blog__promotions-events ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog__promotions-events ul li {
  background-color: #1f2229; /* Slightly darker background for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid #FF8C1A; /* Primary color accent */
  font-size: 17px;
  color: #FFF3E6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog__promotions-events ul li strong {
  color: #FFB04D; /* Glow color for strong text */
}

.page-blog__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* For mobile responsiveness */
}

/* Categories Section */
.page-blog__categories p {
  font-size: 17px;
  margin-bottom: 30px;
  text-align: center;
  color: #FFF3E6;
}

.page-blog__category-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-blog__category-item {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #A84F0C; /* Border color */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-blog__category-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-blog__category-item img {
  
  
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 2px solid #FF8C1A; /* Primary color border */
}

.page-blog__category-name {
  font-size: 18px;
  font-weight: bold;
  color: #FFB04D; /* Glow color */
}

/* Featured Articles Section */
.page-blog__featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog__featured-card {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #A84F0C; /* Border color */
}

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

/* FAQ Section */
.page-blog__faq-list {
  margin-top: 40px;
}

details.page-blog__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #A84F0C; /* Border color */
  overflow: hidden;
  background: #17191F; /* Card BG */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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;
  color: #FFB04D; /* Glow color for question text */
  font-weight: bold;
  font-size: 18px;
}

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: #1f2229; /* Slightly darker on hover */
}

.page-blog__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFB04D;
}

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

details.page-blog__faq-item .page-blog__faq-answer {
  padding: 0 25px 20px;
  background: #1f2229; /* Slightly darker background for answer */
  border-radius: 0 0 10px 10px;
  color: #FFF3E6;
  font-size: 16px;
}

.page-blog__faq-answer p {
  margin: 0;
  padding-top: 10px;
}

.page-blog__faq-answer a {
  color: #FF8C1A; /* Primary color for links in FAQ */
  text-decoration: underline;
}

.page-blog__faq-answer a:hover {
  color: #FFA53A; /* Auxiliary color on hover */
}

/* Final CTA Section */
.page-blog__cta-section {
  background-color: #17191F; /* Card BG */
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid #A84F0C;
}

.page-blog__cta-section .page-blog__container {
  background: #17191F;
  border-radius: 15px;
  padding: 50px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid #A84F0C;
}

.page-blog__cta-section .page-blog__section-title {
  margin-bottom: 25px;
  font-size: 38px;
  color: #FFB04D;
}

.page-blog__cta-section .page-blog__description {
  font-size: 20px;
  margin-bottom: 40px;
  color: #FFF3E6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog__main-title {
    font-size: clamp(24px, 3.5vw, 40px);
  }
  .page-blog__section-title {
    font-size: 32px;
  }
  .page-blog__post-title {
    font-size: 20px;
  }
  .page-blog__cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }
  .page-blog__cta-button--large {
    padding: 15px 40px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .page-blog {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog__section {
    padding: 40px 0;
  }
  .page-blog__container {
    padding: 0 15px;
  }
  .page-blog__main-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .page-blog__hero-content .page-blog__description {
    font-size: 17px;
    margin-bottom: 30px;
  }
  .page-blog__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-blog__section-title::after {
    width: 60px;
    height: 3px;
  }
  .page-blog__description {
    font-size: 16px;
    margin-bottom: 25px;
  }

  /* Images responsive */
  .page-blog img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog__section,
  .page-blog__card,
  .page-blog__container,
  .page-blog__category-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }
  .page-blog__hero-image img {
    border-radius: 8px;
  }
  .page-blog__hero-content {
    max-width: 100%;
  }

  /* Buttons responsive */
  .page-blog__cta-button,
  .page-blog__btn-primary,
  .page-blog__btn-secondary,
  .page-blog a[class*="button"],
  .page-blog a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog__cta-group,
  .page-blog__button-group,
  .page-blog__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
  }
  .page-blog__cta-button {
    font-size: 18px;
    padding: 12px 25px;
  }
  .page-blog__cta-button--large {
    font-size: 20px;
    padding: 15px 30px;
  }

  .page-blog__posts-grid,
  .page-blog__category-list,
  .page-blog__featured-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog__post-card img {
    
  }

  details.page-blog__faq-item summary.page-blog__faq-question { padding: 15px; }
  .page-blog__faq-qtext { font-size: 16px; }
  .page-blog__faq-toggle { font-size: 24px; width: 24px; }
  details.page-blog__faq-item .page-blog__faq-answer { padding: 0 15px 15px; font-size: 15px; }

  .page-blog__cta-section {
    padding: 50px 0;
  }
  .page-blog__cta-section .page-blog__container {
    padding: 30px 20px;
  }
  .page-blog__cta-section .page-blog__section-title {
    font-size: 30px;
  }
  .page-blog__cta-section .page-blog__description {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .page-blog__main-title {
    font-size: 26px;
  }
  .page-blog__section-title {
    font-size: 24px;
  }
  .page-blog__post-title {
    font-size: 18px;
  }
  .page-blog__cta-button {
    font-size: 16px;
    padding: 10px 20px;
  }
  .page-blog__cta-button--large {
    font-size: 18px;
    padding: 12px 25px;
  }
  .page-blog__category-name {
    font-size: 16px;
  }
}