/* style/blog-loto66-promotions-strategy.css */

/* Base styles for the page content */
.page-blog-loto66-promotions-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #f8f8f8; /* Slightly off-white for sections */
}

/* Hero Section */
.page-blog-loto66-promotions-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  padding: 10px 20px 40px; /* Small top padding, body handles header offset */
  background-color: #ffffff; /* White background for hero */
}

.page-blog-loto66-promotions-strategy__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 30px; /* Space between image and text */
}

.page-blog-loto66-promotions-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-loto66-promotions-strategy__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-loto66-promotions-strategy__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  color: #26A9E0; /* Brand color */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-loto66-promotions-strategy__description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

.page-blog-loto66-promotions-strategy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-blog-loto66-promotions-strategy__btn-primary,
.page-blog-loto66-promotions-strategy__btn-secondary,
.page-blog-loto66-promotions-strategy__cta-final .page-blog-loto66-promotions-strategy__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Crucial for button responsiveness */
  max-width: 100%; /* Ensure button doesn't overflow */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
  text-align: center;
}

.page-blog-loto66-promotions-strategy__btn-primary {
  background-color: #26A9E0; /* Main brand color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-loto66-promotions-strategy__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
  transform: translateY(-2px);
}

.page-blog-loto66-promotions-strategy__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-loto66-promotions-strategy__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1e87c0;
  border-color: #1e87c0;
  transform: translateY(-2px);
}

/* Content Area */
.page-blog-loto66-promotions-strategy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}

.page-blog-loto66-promotions-strategy__section {
  margin-bottom: 40px;
}

.page-blog-loto66-promotions-strategy__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  margin-bottom: 25px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.page-blog-loto66-promotions-strategy__sub-title {
  font-size: 1.6em;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-loto66-promotions-strategy__paragraph {
  margin-bottom: 15px;
  color: #333333;
  font-size: 1.05em;
}

.page-blog-loto66-promotions-strategy__paragraph a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-blog-loto66-promotions-strategy__paragraph a:hover {
  color: #1e87c0;
}

.page-blog-loto66-promotions-strategy__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

/* FAQ Section */
.page-blog-loto66-promotions-strategy__faq-list {
  margin-top: 30px;
}

.page-blog-loto66-promotions-strategy__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-loto66-promotions-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #eaf7ff; /* Lighter brand color */
  transition: background-color 0.3s ease;
}

.page-blog-loto66-promotions-strategy__faq-question:hover {
  background-color: #d8edf8;
}

.page-blog-loto66-promotions-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-loto66-promotions-strategy__faq-question::marker {
  display: none;
}

.page-blog-loto66-promotions-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-blog-loto66-promotions-strategy__faq-item[open] .page-blog-loto66-promotions-strategy__faq-toggle {
  content: "−"; /* Change to minus when open */
}

.page-blog-loto66-promotions-strategy__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #555555;
  border-top: 1px solid #e0e0e0;
  background-color: #ffffff;
}

.page-blog-loto66-promotions-strategy__faq-answer p {
  margin-bottom: 0;
}

/* Final CTA */
.page-blog-loto66-promotions-strategy__cta-final {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px dashed #e0e0e0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-loto66-promotions-strategy__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }

  .page-blog-loto66-promotions-strategy__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-loto66-promotions-strategy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-loto66-promotions-strategy__hero-section {
    padding: 10px 15px 30px;
  }

  .page-blog-loto66-promotions-strategy__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-blog-loto66-promotions-strategy__description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-blog-loto66-promotions-strategy__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
  }

  .page-blog-loto66-promotions-strategy__btn-primary,
  .page-blog-loto66-promotions-strategy__btn-secondary,
  .page-blog-loto66-promotions-strategy__cta-final .page-blog-loto66-promotions-strategy__btn-primary,
  .page-blog-loto66-promotions-strategy a[class*="button"],
  .page-blog-loto66-promotions-strategy a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important; /* Ensure full width */
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-loto66-promotions-strategy__content-area {
    padding: 30px 15px;
    margin-top: 20px;
  }

  .page-blog-loto66-promotions-strategy__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-loto66-promotions-strategy__sub-title {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-loto66-promotions-strategy__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px 0;
  }
  
  /* Ensure containers for images/videos/buttons also adapt */
  .page-blog-loto66-promotions-strategy__section,
  .page-blog-loto66-promotions-strategy__card,
  .page-blog-loto66-promotions-strategy__container,
  .page-blog-loto66-promotions-strategy__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px; /* Add padding to prevent content touching edges */
    padding-right: 15px;
  }
  /* Remove padding from content-area itself if already handled by inner elements */
  .page-blog-loto66-promotions-strategy__content-area {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  /* Re-add padding to inner text blocks if needed */
  .page-blog-loto66-promotions-strategy__content-area > * {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  /* Specific override for FAQ item to ensure padding */
  .page-blog-loto66-promotions-strategy__faq-item {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Color Contrast Enforcement for light body background */
.page-blog-loto66-promotions-strategy {
  color: #333333; /* Default text color */
}

.page-blog-loto66-promotions-strategy__dark-section {
  background: #26A9E0; /* Brand color as dark background */
  color: #ffffff; /* White text on brand color */
}

.page-blog-loto66-promotions-strategy__faq-question {
  color: #26A9E0; /* Brand color for question text */
}

.page-blog-loto66-promotions-strategy__faq-answer {
  color: #555555; /* Darker text for answer */
}

.page-blog-loto66-promotions-strategy__btn-primary {
  background: #26A9E0;
  color: #ffffff;
}

.page-blog-loto66-promotions-strategy__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}