:root {
  --primary-color: #26A9E0; /* Main brand color */
  --secondary-color: #EA7C07; /* Login button color */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-color-light: #ffffff;
  --border-color-light: #e0e0e0;
}

/* Base styles for the page content */
.page-blog-f18678-exclusive-promotions-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark); /* Default text color for light background */
  background-color: var(--background-color-light); /* Default body background is white */
}

/* Hero Article Section */
.page-blog-f18678-exclusive-promotions-guide__hero-article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #f9f9f9;
}

.page-blog-f18678-exclusive-promotions-guide__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-blog-f18678-exclusive-promotions-guide__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-f18678-exclusive-promotions-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-f18678-exclusive-promotions-guide__main-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-f18678-exclusive-promotions-guide__intro-text {
  font-size: 18px;
  color: #555;
  margin-bottom: 25px;
}

.page-blog-f18678-exclusive-promotions-guide__meta-info {
  font-size: 14px;
  color: #777;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Content Section */
.page-blog-f18678-exclusive-promotions-guide__content-section {
  padding: 40px 0;
  background-color: var(--background-color-light);
}

.page-blog-f18678-exclusive-promotions-guide__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-f18678-exclusive-promotions-guide__section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

.page-blog-f18678-exclusive-promotions-guide__sub-section-title {
  font-size: 24px;
  font-weight: 600;
  color: #444;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-f18678-exclusive-promotions-guide p {
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--text-color-dark);
}

.page-blog-f18678-exclusive-promotions-guide__image-block {
  margin: 25px 0;
  text-align: center;
}

.page-blog-f18678-exclusive-promotions-guide__content-image {
  width: 100%;
  height: auto;
  max-width: 800px; /* Smaller max-width for content images */
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-f18678-exclusive-promotions-guide__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-color-dark);
}

.page-blog-f18678-exclusive-promotions-guide__list li {
  margin-bottom: 8px;
  font-size: 16px;
}

.page-blog-f18678-exclusive-promotions-guide__list ol {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-color-dark);
}

/* CTA Buttons */
.page-blog-f18678-exclusive-promotions-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent; /* Added for consistency */
  box-sizing: border-box; /* Crucial for responsive buttons */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-blog-f18678-exclusive-promotions-guide__cta-button:hover {
  background: #1e87bb; /* Slightly darker primary on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-blog-f18678-exclusive-promotions-guide__cta-section {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 8px;
}

.page-blog-f18678-exclusive-promotions-guide__btn-primary {
  background: var(--primary-color);
  color: var(--text-color-light);
  border-color: var(--primary-color);
}

.page-blog-f18678-exclusive-promotions-guide__btn-secondary {
  background: var(--background-color-light);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-blog-f18678-exclusive-promotions-guide__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-color-light);
}

/* FAQ Section */
.page-blog-f18678-exclusive-promotions-guide__faq-list {
  margin-top: 30px;
}

details.page-blog-f18678-exclusive-promotions-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color-light);
  overflow: hidden;
  background: var(--background-color-light);
}
details.page-blog-f18678-exclusive-promotions-guide__faq-item summary.page-blog-f18678-exclusive-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-blog-f18678-exclusive-promotions-guide__faq-item summary.page-blog-f18678-exclusive-promotions-guide__faq-question::-webkit-details-marker {
  display: none;
}