.page-promo {
  color: #333333;
  padding-top: var(--header-offset, 120px);
  background-color: #f4f4f4;
}

.page-promo__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  padding: 0;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  padding: 20px;
  z-index: 10;
}

.page-promo__hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-promo__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
}

.page-promo__button--primary {
  background-color: #FFD700;
  color: #0A2E36;
}

.page-promo__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promo__button--secondary {
  background-color: #0A2E36;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promo__button--secondary:hover {
  background-color: #1a4a58;
  transform: translateY(-2px);
}

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 1rem;
}

.page-promo__overview-section,
.page-promo__featured-detail-section,
.page-promo__benefits-section,
.page-promo__faq-section,
.page-promo__cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-promo__overview-title,
.page-promo__featured-detail-title,
.page-promo__benefits-title,
.page-promo__faq-title,
.page-promo__cta-title {
  font-size: 2.5rem;
  color: #0A2E36;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promo__overview-description,
.page-promo__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-promo__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.page-promo__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promo__card-title {
  font-size: 1.5rem;
  color: #0A2E36;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promo__detail-card-wrapper {
  display: flex;
  justify-content: center;
}

.page-promo__detail-card {
  background-color: #0A2E36;
  color: #f0f0f0;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  max-width: 900px;
}

.page-promo__detail-image {
  width: 50%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-promo__detail-content {
  width: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-promo__detail-item-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.3;
}

.page-promo__detail-item-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__detail-item-title a:hover {
  color: #e6c200;
}

.page-promo__detail-item-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #cccccc;
}

.page-promo__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promo__benefit-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  transition: transform 0.3s ease;
}

.page-promo__benefit-item:hover {
  transform: translateY(-5px);
}

.page-promo__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-promo__benefit-heading {
  font-size: 1.3rem;
  color: #0A2E36;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo__benefit-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666666;
}

.page-promo__faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-promo__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-promo__faq-question {
  font-size: 1.15rem;
  color: #0A2E36;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  margin: 0;
}

.page-promo__faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.page-promo__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promo__faq-answer {
  font-size: 1rem;
  color: #555555;
  padding: 0 25px 20px 25px;
  line-height: 1.6;
  display: none;
  margin: 0;
}

.page-promo__faq-question.active + .page-promo__faq-answer {
  display: block;
}

.page-promo__cta-section {
  text-align: center;
  background-color: #0A2E36;
  color: #ffffff;
  padding: 60px 20px;
  border-radius: 12px;
  margin-bottom: 60px;
}

.page-promo__cta-title {
  color: #FFD700;
  margin-bottom: 20px;
}

.page-promo__cta-description {
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3rem;
  }

  .page-promo__hero-description {
    font-size: 1.1rem;
  }

  .page-promo__overview-title,
  .page-promo__featured-detail-title,
  .page-promo__benefits-title,
  .page-promo__faq-title,
  .page-promo__cta-title {
    font-size: 2rem;
  }

  .page-promo__detail-card {
    flex-direction: column;
  }

  .page-promo__detail-image,
  .page-promo__detail-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-top: var(--header-offset, 80px);
  }
  .page-promo__hero-title {
    font-size: 2.2rem;
  }

  .page-promo__hero-description {
    font-size: 1rem;
  }

  .page-promo__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-promo__overview-section,
  .page-promo__featured-detail-section,
  .page-promo__benefits-section,
  .page-promo__faq-section,
  .page-promo__cta-section {
    margin: 40px auto;
  }

  .page-promo__overview-title,
  .page-promo__featured-detail-title,
  .page-promo__benefits-title,
  .page-promo__faq-title,
  .page-promo__cta-title {
    font-size: 1.8rem;
  }

  .page-promo__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-promo__promo-card {
    padding: 20px;
  }

  .page-promo__card-image {
    height: 180px;
  }

  .page-promo__detail-image,
  .page-promo__detail-content {
    padding: 20px;
  }

  .page-promo__detail-item-title {
    font-size: 1.5rem;
  }

  .page-promo__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-promo__faq-question {
    font-size: 1.05rem;
    padding: 15px 20px;
  }

  .page-promo__faq-answer {
    padding: 0 20px 15px 20px;
  }

  /* Ensure images in content area do not overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8rem;
  }

  .page-promo__hero-description {
    font-size: 0.9rem;
  }

  .page-promo__button {
    width: 95%;
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-promo__overview-title,
  .page-promo__featured-detail-title,
  .page-promo__benefits-title,
  .page-promo__faq-title,
  .page-promo__cta-title {
    font-size: 1.5rem;
  }

  .page-promo__card-title {
    font-size: 1.3rem;
  }

  .page-promo__detail-item-title {
    font-size: 1.3rem;
  }
}