/* style/blog-lk68-latest-promotions-2024.css */
.page-blog-lk68-latest-promotions-2024 {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Body background is light, so use dark text */
  background-color: #ffffff;
  line-height: 1.6;
}

.page-blog-lk68-latest-promotions-2024__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: #f0f8ff; /* Light blue tint for hero background */
  overflow: hidden;
}

.page-blog-lk68-latest-promotions-2024__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for hero image */
}

.page-blog-lk68-latest-promotions-2024__hero-content {
  max-width: 90%;
  width: 100%;
  padding: 30px 20px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: -80px; /* Overlap with image slightly for visual appeal */
  z-index: 1;
  box-sizing: border-box;
}

.page-blog-lk68-latest-promotions-2024__main-title {
  font-size: clamp(2em, 4vw, 2.8em);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-lk68-latest-promotions-2024__intro-text {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-lk68-latest-promotions-2024__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
}

.page-blog-lk68-latest-promotions-2024__btn-primary:hover {
  background-color: #1e87c0;
}

.page-blog-lk68-latest-promotions-2024__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-lk68-latest-promotions-2024__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 50px;
  font-weight: 700;
}

.page-blog-lk68-latest-promotions-2024__paragraph {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333333;
}

.page-blog-lk68-latest-promotions-2024__highlight {
  color: #26A9E0;
  font-weight: 600;
}

.page-blog-lk68-latest-promotions-2024__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-lk68-latest-promotions-2024__card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog-lk68-latest-promotions-2024__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-blog-lk68-latest-promotions-2024__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-lk68-latest-promotions-2024__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  padding: 15px 20px 10px;
  font-weight: 600;
}

.page-blog-lk68-latest-promotions-2024__card-text {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-blog-lk68-latest-promotions-2024__btn-secondary {
  display: inline-block;
  background-color: #ffffff;
  color: #26A9E0;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #26A9E0;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0 20px 20px;
  text-align: center;
}

.page-blog-lk68-latest-promotions-2024__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-lk68-latest-promotions-2024__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-lk68-latest-promotions-2024__step-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-blog-lk68-latest-promotions-2024__step-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-lk68-latest-promotions-2024__step-text {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
}

.page-blog-lk68-latest-promotions-2024__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
}

.page-blog-lk68-latest-promotions-2024__list {
  list-style: disc inside;
  padding-left: 20px;
  margin-bottom: 30px;
}

.page-blog-lk68-latest-promotions-2024__list-item {
  font-size: 1.05em;
  color: #333333;
  margin-bottom: 10px;
}

.page-blog-lk68-latest-promotions-2024__faq-list {
  margin-top: 30px;
  margin-bottom: 50px;
}

.page-blog-lk68-latest-promotions-2024__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-lk68-latest-promotions-2024__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
  list-style: none; /* For details summary */
}

.page-blog-lk68-latest-promotions-2024__faq-item[open] > .page-blog-lk68-latest-promotions-2024__faq-question {
  background-color: #e6f7ff;
  color: #26A9E0;
  border-bottom: 1px solid #a0d9ff;
}

.page-blog-lk68-latest-promotions-2024__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-lk68-latest-promotions-2024__faq-qtext {
  flex-grow: 1;
}

.page-blog-lk68-latest-promotions-2024__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  margin-left: 15px;
  color: #26A9E0;
}

.page-blog-lk68-latest-promotions-2024__faq-item[open] .page-blog-lk68-latest-promotions-2024__faq-toggle {
  color: #26A9E0;
}

.page-blog-lk68-latest-promotions-2024__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #555555;
  background-color: #ffffff;
}

.page-blog-lk68-latest-promotions-2024__cta-footer {
  text-align: center;
  padding: 40px 20px;
  background-color: #f0f8ff;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-blog-lk68-latest-promotions-2024__cta-text {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 25px;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-lk68-latest-promotions-2024__hero-content {
    margin-top: -60px;
  }

  .page-blog-lk68-latest-promotions-2024__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
  }

  .page-blog-lk68-latest-promotions-2024__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-lk68-latest-promotions-2024__hero-content {
    margin-top: -40px;
    padding: 20px;
  }

  .page-blog-lk68-latest-promotions-2024__main-title {
    font-size: clamp(1.5em, 6vw, 2.2em);
  }

  .page-blog-lk68-latest-promotions-2024__intro-text,
  .page-blog-lk68-latest-promotions-2024__paragraph,
  .page-blog-lk68-latest-promotions-2024__list-item,
  .page-blog-lk68-latest-promotions-2024__card-text,
  .page-blog-lk68-latest-promotions-2024__step-text,
  .page-blog-lk68-latest-promotions-2024__faq-answer p {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  .page-blog-lk68-latest-promotions-2024__section-title {
    font-size: 1.8em;
  }

  .page-blog-lk68-latest-promotions-2024__promo-cards,
  .page-blog-lk68-latest-promotions-2024__steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-lk68-latest-promotions-2024__card-image {
    height: 200px;
  }

  .page-blog-lk68-latest-promotions-2024__content-area,
  .page-blog-lk68-latest-promotions-2024__hero-section {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }

  /* Mobile image responsive adaptation */
  .page-blog-lk68-latest-promotions-2024 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-lk68-latest-promotions-2024__section,
  .page-blog-lk68-latest-promotions-2024__card,
  .page-blog-lk68-latest-promotions-2024__container,
  .page-blog-lk68-latest-promotions-2024__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Mobile button responsive adaptation */
  .page-blog-lk68-latest-promotions-2024__btn-primary,
  .page-blog-lk68-latest-promotions-2024__btn-secondary,
  .page-blog-lk68-latest-promotions-2024 a[class*="button"],
  .page-blog-lk68-latest-promotions-2024 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;
    text-align: center;
  }

  .page-blog-lk68-latest-promotions-2024__hero-content .page-blog-lk68-latest-promotions-2024__btn-primary {
    margin-left: 0;
    margin-right: 0;
  }

  .page-blog-lk68-latest-promotions-2024__cta-footer .page-blog-lk68-latest-promotions-2024__btn-primary {
    margin-left: 0;
    margin-right: 0;
  }

  .page-blog-lk68-latest-promotions-2024__promo-cards .page-blog-lk68-latest-promotions-2024__btn-secondary {
    margin-left: 15px;
    margin-right: 15px;
  }

  .page-blog-lk68-latest-promotions-2024__cta-buttons,
  .page-blog-lk68-latest-promotions-2024__button-group,
  .page-blog-lk68-latest-promotions-2024__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column; 
  }
}

@media (max-width: 480px) {
  .page-blog-lk68-latest-promotions-2024__hero-content {
    margin-top: -20px;
    padding: 15px;
  }

  .page-blog-lk68-latest-promotions-2024__main-title {
    font-size: clamp(1.3em, 7vw, 2em);
  }

  .page-blog-lk68-latest-promotions-2024__section-title {
    font-size: 1.6em;
  }

  .page-blog-lk68-latest-promotions-2024__btn-primary,
  .page-blog-lk68-latest-promotions-2024__btn-secondary {
    padding: 10px 15px;
  }
}