/* style/blog-understanding-jl3-bonuses.css */

/* Base styles for the page content, ensuring contrast with body background */
.page-blog-understanding-jl3-bonuses {
  color: #FFF6D6; /* Text Main color for dark background */
  background-color: #0A0A0A; /* Background color */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Sections */
.page-blog-understanding-jl3-bonuses__section {
  padding: 40px 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.page-blog-understanding-jl3-bonuses__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-understanding-jl3-bonuses__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0A0A0A;
}

.page-blog-understanding-jl3-bonuses__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-blog-understanding-jl3-bonuses__hero-content {
  text-align: center;
  padding: 0 20px 40px;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.page-blog-understanding-jl3-bonuses__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFD36B; /* Glow color for main title */
  margin-bottom: 20px;
}

.page-blog-understanding-jl3-bonuses__hero-description {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 30px;
}

/* Section Titles */
.page-blog-understanding-jl3-bonuses__section-title {
  font-weight: bold;
  color: #F2C14E; /* Main brand color for section titles */
  margin-bottom: 30px;
  text-align: center;
  font-size: 2.2em;
}

/* Paragraphs */
.page-blog-understanding-jl3-bonuses__paragraph {
  color: #FFF6D6;
  margin-bottom: 15px;
  font-size: 1em;
}

/* Images within content */
.page-blog-understanding-jl3-bonuses__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Cards */
.page-blog-understanding-jl3-bonuses__card {
  background: #111111; /* Card BG color */
  color: #FFF6D6; /* Text Main color */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-understanding-jl3-bonuses__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-understanding-jl3-bonuses__card-title {
  color: #FFD36B; /* Glow color for card titles */
  font-size: 1.6em;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Call to Action Buttons */
.page-blog-understanding-jl3-bonuses__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-blog-understanding-jl3-bonuses__btn-primary,
.page-blog-understanding-jl3-bonuses__btn-secondary {
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-understanding-jl3-bonuses__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #ffffff; /* White text for primary button */
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-understanding-jl3-bonuses__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-understanding-jl3-bonuses__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Main brand color for secondary button text */
  border: 2px solid #F2C14E; /* Main brand color for border */
}

.page-blog-understanding-jl3-bonuses__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  transform: translateY(-3px);
}

/* FAQ Section */
.page-blog-understanding-jl3-bonuses__faq-section {
  background-color: #111111; /* Card BG for FAQ section */
  padding: 60px 20px;
  border-radius: 12px;
  margin-top: 30px;
}

.page-blog-understanding-jl3-bonuses__faq-list {
  margin-top: 30px;
}

.page-blog-understanding-jl3-bonuses__faq-item {
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #0A0A0A;
}

.page-blog-understanding-jl3-bonuses__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #111111; /* Card BG */
  color: #FFD36B; /* Glow color for question text */
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-blog-understanding-jl3-bonuses__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-blog-understanding-jl3-bonuses__faq-question h3 {
  margin: 0;
  color: inherit;
}

.page-blog-understanding-jl3-bonuses__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-understanding-jl3-bonuses__faq-item.active .page-blog-understanding-jl3-bonuses__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-understanding-jl3-bonuses__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  background-color: #0A0A0A;
}

.page-blog-understanding-jl3-bonuses__faq-item.active .page-blog-understanding-jl3-bonuses__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-understanding-jl3-bonuses {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-understanding-jl3-bonuses__hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-understanding-jl3-bonuses__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-understanding-jl3-bonuses__main-title {
    font-size: 2em;
  }

  .page-blog-understanding-jl3-bonuses__section-title {
    font-size: 1.8em;
  }

  .page-blog-understanding-jl3-bonuses__card-title {
    font-size: 1.4em;
  }

  .page-blog-understanding-jl3-bonuses__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-understanding-jl3-bonuses__btn-primary,
  .page-blog-understanding-jl3-bonuses__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-blog-understanding-jl3-bonuses__section,
  .page-blog-understanding-jl3-bonuses__card,
  .page-blog-understanding-jl3-bonuses__container,
  .page-blog-understanding-jl3-bonuses__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-understanding-jl3-bonuses img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-understanding-jl3-bonuses__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-blog-understanding-jl3-bonuses__faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-understanding-jl3-bonuses__main-title {
    font-size: 1.8em;
  }

  .page-blog-understanding-jl3-bonuses__section-title {
    font-size: 1.6em;
  }

  .page-blog-understanding-jl3-bonuses__hero-description {
    font-size: 0.95em;
  }
}