/* style/blog-free-trial-strategy-guide.css */
:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg-color: #17191F;
  --bg-color: #0D0E12;
  --text-main-color: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange-color: #D96800;
  --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
}

.page-blog-free-trial-strategy-guide {
  background-color: var(--bg-color);
  color: var(--text-main-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-free-trial-strategy-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body đã padding-top, chỉ cần 10px trang trí */
  overflow: hidden;
}

.page-blog-free-trial-strategy-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-free-trial-strategy-guide__hero-content {
  position: relative; /* Đảm bảo không chồng lên ảnh mà nằm dưới */
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  text-align: center;
  margin-top: -100px; /* Kéo nội dung lên một chút để gần ảnh hơn */
  z-index: 1;
}

.page-blog-free-trial-strategy-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-free-trial-strategy-guide__hero-description {
  font-size: 1.2rem;
  color: var(--text-main-color);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-free-trial-strategy-guide__btn-primary,
.page-blog-free-trial-strategy-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin: 10px;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-free-trial-strategy-guide__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
}

.page-blog-free-trial-strategy-guide__btn-primary:hover {
  filter: brightness(1.2);
  transform: translateY(-2px);
}

.page-blog-free-trial-strategy-guide__btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-blog-free-trial-strategy-guide__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--bg-color);
  transform: translateY(-2px);
}

.page-blog-free-trial-strategy-guide__content-section {
  padding: 60px 0;
}

.page-blog-free-trial-strategy-guide__content-section.page-blog-free-trial-strategy-guide__dark-bg {
  background-color: var(--card-bg-color);
}

.page-blog-free-trial-strategy-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-free-trial-strategy-guide__section-title {
  font-size: 2.5rem;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-free-trial-strategy-guide__text-block {
  font-size: 1.1rem;
  color: var(--text-main-color);
  margin-bottom: 20px;
}

.page-blog-free-trial-strategy-guide__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-blog-free-trial-strategy-guide__content-image {
  width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-free-trial-strategy-guide__text-content {
  width: 50%;
}

.page-blog-free-trial-strategy-guide__sub-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-free-trial-strategy-guide__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-free-trial-strategy-guide__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--text-main-color);
}

.page-blog-free-trial-strategy-guide__list-item::before {
  content: '•';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.page-blog-free-trial-strategy-guide__list-item strong {
  color: var(--secondary-color);
}

.page-blog-free-trial-strategy-guide__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-free-trial-strategy-guide__strategy-card {
  background-color: var(--card-bg-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-main-color);
}

.page-blog-free-trial-strategy-guide__card-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-free-trial-strategy-guide__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-free-trial-strategy-guide__list--large-icon .page-blog-free-trial-strategy-guide__list-item {
  display: flex;
  align-items: flex-start;
  padding-left: 0;
  gap: 20px;
}

.page-blog-free-trial-strategy-guide__list--large-icon .page-blog-free-trial-strategy-guide__list-item::before {
  content: none;
}

.page-blog-free-trial-strategy-guide__list-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  object-fit: contain;
  min-width: 64px;
  min-height: 64px;
}

.page-blog-free-trial-strategy-guide__faq-list {
  margin-top: 40px;
}

.page-blog-free-trial-strategy-guide__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-free-trial-strategy-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--secondary-color);
  background-color: var(--card-bg-color);
  user-select: none;
}

.page-blog-free-trial-strategy-guide__faq-question:hover {
  background-color: #2a2c33; /* Slightly lighter on hover */
}

.page-blog-free-trial-strategy-guide__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.page-blog-free-trial-strategy-guide__faq-item[open] .page-blog-free-trial-strategy-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-free-trial-strategy-guide__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: var(--text-main-color);
}

.page-blog-free-trial-strategy-guide__cta-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-free-trial-strategy-guide__hero-content {
    margin-top: -80px;
  }
  .page-blog-free-trial-strategy-guide__main-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
  }
  .page-blog-free-trial-strategy-guide__section-title {
    font-size: 2rem;
  }
  .page-blog-free-trial-strategy-guide__sub-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-blog-free-trial-strategy-guide__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-free-trial-strategy-guide__hero-content {
    margin-top: -60px;
    padding: 15px;
  }
  .page-blog-free-trial-strategy-guide__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-blog-free-trial-strategy-guide__hero-description {
    font-size: 1rem;
  }
  .page-blog-free-trial-strategy-guide__image-text-block {
    flex-direction: column;
    gap: 20px;
  }
  .page-blog-free-trial-strategy-guide__content-image,
  .page-blog-free-trial-strategy-guide__text-content {
    width: 100%;
  }
  .page-blog-free-trial-strategy-guide__content-section {
    padding: 40px 0;
  }
  .page-blog-free-trial-strategy-guide__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-blog-free-trial-strategy-guide__sub-title {
    font-size: 1.4rem;
  }
  .page-blog-free-trial-strategy-guide__strategy-grid {
    gap: 20px;
  }
  .page-blog-free-trial-strategy-guide__btn-primary,
  .page-blog-free-trial-strategy-guide__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    margin: 5px 0;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-free-trial-strategy-guide__cta-group {
    flex-direction: column;
    gap: 10px;
  }
  .page-blog-free-trial-strategy-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-free-trial-strategy-guide__section,
  .page-blog-free-trial-strategy-guide__card,
  .page-blog-free-trial-strategy-guide__container,
  .page-blog-free-trial-strategy-guide__image-text-block,
  .page-blog-free-trial-strategy-guide__strategy-card,
  .page-blog-free-trial-strategy-guide__list--large-icon .page-blog-free-trial-strategy-guide__list-item,
  .page-blog-free-trial-strategy-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-blog-free-trial-strategy-guide__faq-question {
    font-size: 1rem;
  }
  .page-blog-free-trial-strategy-guide__list-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .page-blog-free-trial-strategy-guide__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .page-blog-free-trial-strategy-guide__hero-description {
    font-size: 0.9rem;
  }
  .page-blog-free-trial-strategy-guide__section-title {
    font-size: 1.5rem;
  }
  .page-blog-free-trial-strategy-guide__sub-title {
    font-size: 1.2rem;
  }
  .page-blog-free-trial-strategy-guide__text-block {
    font-size: 0.95rem;
  }
  .page-blog-free-trial-strategy-guide__faq-question {
    padding: 15px;
  }
  .page-blog-free-trial-strategy-guide__faq-answer {
    padding: 0 15px 15px;
  }
}