.page-blog-32win11-ios-tips-tricks {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #08160F; /* Nền tối, theo màu custom */
}

.page-blog-32win11-ios-tips-tricks__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 60px 20px;
  padding-top: 10px; /* Nhỏ hơn so với header-offset của body */
  background-color: #08160F;
  color: #F2FFF6;
}

.page-blog-32win11-ios-tips-tricks__hero-image {
  width: 100%;
  height: auto;
  max-height: 500px; /* Giới hạn chiều cao để không quá lớn */
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.4); /* Làm tối ảnh nền để chữ nổi bật */
}

.page-blog-32win11-ios-tips-tricks__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
}

.page-blog-32win11-ios-tips-tricks__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-32win11-ios-tips-tricks__description {
  font-size: 1.15rem;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-blog-32win11-ios-tips-tricks__content-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
}

.page-blog-32win11-ios-tips-tricks__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-32win11-ios-tips-tricks__section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #F2FFF6;
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-32win11-ios-tips-tricks__subsection-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: #22C768;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-32win11-ios-tips-tricks__text-block {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #A7D9B8;
}

.page-blog-32win11-ios-tips-tricks__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #A7D9B8;
}

.page-blog-32win11-ios-tips-tricks__list-item {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-blog-32win11-ios-tips-tricks__image-content {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Min size requirement */
}

.page-blog-32win11-ios-tips-tricks__btn-primary,
.page-blog-32win11-ios-tips-tricks__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 10px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-32win11-ios-tips-tricks__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
}

.page-blog-32win11-ios-tips-tricks__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-32win11-ios-tips-tricks__btn-secondary {
  background-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-blog-32win11-ios-tips-tricks__btn-secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
}

.page-blog-32win11-ios-tips-tricks__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 20px;
}

.page-blog-32win11-ios-tips-tricks__faq-container {
  margin-top: 40px;
  border-top: 1px solid #1E3A2A;
  padding-top: 20px;
}

.page-blog-32win11-ios-tips-tricks__faq-item {
  background-color: #0A4B2C;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-blog-32win11-ios-tips-tricks__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  background-color: #0A4B2C;
  color: #F2FFF6;
  list-style: none;
}

.page-blog-32win11-ios-tips-tricks__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-32win11-ios-tips-tricks__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #2AD16F;
}

.page-blog-32win11-ios-tips-tricks__faq-item[open] .page-blog-32win11-ios-tips-tricks__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-32win11-ios-tips-tricks__faq-answer {
  padding: 0 20px 15px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #A7D9B8;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-32win11-ios-tips-tricks__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-32win11-ios-tips-tricks__hero-content {
    padding: 15px;
  }

  .page-blog-32win11-ios-tips-tricks__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-32win11-ios-tips-tricks__description {
    font-size: 1rem;
  }

  .page-blog-32win11-ios-tips-tricks__content-section {
    padding: 40px 0;
  }

  .page-blog-32win11-ios-tips-tricks__container {
    padding: 0 15px;
  }

  .page-blog-32win11-ios-tips-tricks__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .page-blog-32win11-ios-tips-tricks__subsection-title {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-32win11-ios-tips-tricks__text-block,
  .page-blog-32win11-ios-tips-tricks__list-item,
  .page-blog-32win11-ios-tips-tricks__faq-answer p {
    font-size: 0.95rem;
  }

  .page-blog-32win11-ios-tips-tricks__btn-primary,
  .page-blog-32win11-ios-tips-tricks__btn-secondary {
    width: 100% !important;
    margin: 5px 0 !important;
    padding: 10px 15px !important;
  }

  .page-blog-32win11-ios-tips-tricks__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-blog-32win11-ios-tips-tricks img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-32win11-ios-tips-tricks__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-32win11-ios-tips-tricks__container,
  .page-blog-32win11-ios-tips-tricks__content-section,
  .page-blog-32win11-ios-tips-tricks__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}