/* style/blog-f1686-giftcode-value-tips.css */
:root {
  --primary-color: #2F6BFF;
  --secondary-color: #6FA3FF;
  --background-color: #F4F7FB;
  --card-background: #FFFFFF;
  --text-main-color: #1F2D3D;
  --border-color: #D6E2FF;
  --glow-color: #A5C4FF;
}

.page-blog-f1686-giftcode-value-tips {
  font-family: 'Arial', sans-serif;
  color: var(--text-main-color); /* Body default is light, so text is dark */
  background-color: var(--background-color);
  line-height: 1.6;
}

/* HERO Section */
.page-blog-f1686-giftcode-value-tips__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, header offset handled by body */
  background-color: var(--background-color);
  overflow: hidden;
}

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

.page-blog-f1686-giftcode-value-tips__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-blog-f1686-giftcode-value-tips__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.page-blog-f1686-giftcode-value-tips__hero-image img:hover {
  transform: scale(1.02);
}

.page-blog-f1686-giftcode-value-tips__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

.page-blog-f1686-giftcode-value-tips__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem); /* Use clamp for H1 */
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-blog-f1686-giftcode-value-tips__hero-description {
  font-size: 1.15rem;
  color: var(--text-main-color);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-blog-f1686-giftcode-value-tips__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.3);
  border: none;
  cursor: pointer;
}

.page-blog-f1686-giftcode-value-tips__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.4);
}

.page-blog-f1686-giftcode-value-tips__cta-button--large {
  padding: 18px 50px;
  font-size: 20px;
}

/* Content Area */
.page-blog-f1686-giftcode-value-tips__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--card-background);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: -80px; /* Overlap with hero section slightly */
  position: relative;
  z-index: 1;
}

.page-blog-f1686-giftcode-value-tips__section-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 600;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
}

.page-blog-f1686-giftcode-value-tips__subsection-title {
  font-size: 1.5rem;
  color: var(--text-main-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-f1686-giftcode-value-tips p {
  margin-bottom: 1em;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-main-color);
}

.page-blog-f1686-giftcode-value-tips strong {
  color: var(--primary-color);
}

.page-blog-f1686-giftcode-value-tips__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-f1686-giftcode-value-tips__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--text-main-color);
}

.page-blog-f1686-giftcode-value-tips__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.page-blog-f1686-giftcode-value-tips__ordered-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-blog-f1686-giftcode-value-tips__ordered-list .page-blog-f1686-giftcode-value-tips__list-item {
  padding-left: 0;
}

.page-blog-f1686-giftcode-value-tips__ordered-list .page-blog-f1686-giftcode-value-tips__list-item::before {
  content: none;
}

.page-blog-f1686-giftcode-value-tips__image-container {
  margin: 40px 0;
  text-align: center;
}

.page-blog-f1686-giftcode-value-tips__image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto; /* Center image */
  min-width: 200px; /* Min size enforcement */
  min-height: 200px;
}

/* FAQ Section */
.page-blog-f1686-giftcode-value-tips__faq-list {
  margin-top: 40px;
}

details.page-blog-f1686-giftcode-value-tips__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-background);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

details.page-blog-f1686-giftcode-value-tips__faq-item summary.page-blog-f1686-giftcode-value-tips__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-f1686-giftcode-value-tips__faq-item summary.page-blog-f1686-giftcode-value-tips__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog-f1686-giftcode-value-tips__faq-item summary.page-blog-f1686-giftcode-value-tips__faq-question:hover {
  background: var(--background-color);
}

.page-blog-f1686-giftcode-value-tips__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main-color);
}

.page-blog-f1686-giftcode-value-tips__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}

details.page-blog-f1686-giftcode-value-tips__faq-item[open] .page-blog-f1686-giftcode-value-tips__faq-toggle {
  transform: rotate(45deg);
}

details.page-blog-f1686-giftcode-value-tips__faq-item .page-blog-f1686-giftcode-value-tips__faq-answer {
  padding: 0 20px 20px;
  background: var(--background-color);
  border-radius: 0 0 8px 8px;
  color: var(--text-main-color);
  font-size: 1rem;
}

.page-blog-f1686-giftcode-value-tips__faq-answer p {
  margin-bottom: 0;
}

.page-blog-f1686-giftcode-value-tips__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-f1686-giftcode-value-tips__content-area {
    margin-top: -60px;
  }
}

@media (max-width: 768px) {
  .page-blog-f1686-giftcode-value-tips__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* Ensure small top padding */
  }

  .page-blog-f1686-giftcode-value-tips__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-f1686-giftcode-value-tips__hero-description {
    font-size: 1rem;
  }

  .page-blog-f1686-giftcode-value-tips__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-blog-f1686-giftcode-value-tips__cta-button--large {
    padding: 15px 35px;
    font-size: 18px;
  }

  .page-blog-f1686-giftcode-value-tips__content-area {
    padding: 30px 15px;
    margin-top: -40px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-f1686-giftcode-value-tips__section-title {
    font-size: 1.7rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-f1686-giftcode-value-tips__subsection-title {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-blog-f1686-giftcode-value-tips p,
  .page-blog-f1686-giftcode-value-tips__list-item {
    font-size: 0.95rem;
  }

  .page-blog-f1686-giftcode-value-tips__image-container img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px;
    min-height: 200px;
  }

  details.page-blog-f1686-giftcode-value-tips__faq-item summary.page-blog-f1686-giftcode-value-tips__faq-question {
    padding: 15px;
  }

  .page-blog-f1686-giftcode-value-tips__faq-qtext {
    font-size: 1rem;
  }

  details.page-blog-f1686-giftcode-value-tips__faq-item .page-blog-f1686-giftcode-value-tips__faq-answer {
    padding: 0 15px 15px;
  }

  .page-blog-f1686-giftcode-value-tips__cta-bottom .page-blog-f1686-giftcode-value-tips__cta-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-blog-f1686-giftcode-value-tips__hero-image {
    margin-bottom: 20px;
  }

  .page-blog-f1686-giftcode-value-tips__main-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .page-blog-f1686-giftcode-value-tips__hero-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .page-blog-f1686-giftcode-value-tips__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }

  .page-blog-f1686-giftcode-value-tips__section-title {
    font-size: 1.5rem;
  }

  .page-blog-f1686-giftcode-value-tips__subsection-title {
    font-size: 1.2rem;
  }
}