.page-resources-vn8day-review-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #0A2E36; /* Dark text for readability */
  background-color: #f8f8f8;
}

.page-resources-vn8day-review-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-vn8day-review-guide__hero-section {
  background: linear-gradient(135deg, #0A2E36, #1f4cb3); /* Dark blue/green to a complementary blue */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
}

.page-resources-vn8day-review-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #E0B34C; /* Gold for emphasis */
}

.page-resources-vn8day-review-guide__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-vn8day-review-guide__cta-button {
  display: inline-block;
  background-color: #E0B34C; /* Gold */
  color: #0A2E36; /* Dark text for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-vn8day-review-guide__cta-button:hover {
  background-color: #d4a745; /* Slightly darker gold */
  transform: translateY(-2px);
}

.page-resources-vn8day-review-guide__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-resources-vn8day-review-guide__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-resources-vn8day-review-guide__content-section {
  padding: 60px 0;
}

.page-resources-vn8day-review-guide__bg-light {
  background-color: #ffffff;
}

.page-resources-vn8day-review-guide__section-title {
  font-size: 2.5em;
  color: #0A2E36;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-vn8day-review-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E0B34C;
  border-radius: 2px;
}

.page-resources-vn8day-review-guide__sub-heading {
  font-size: 1.8em;
  color: #0A2E36;
  margin-top: 30px;
  margin-bottom: 20px;
  border-left: 5px solid #E0B34C;
  padding-left: 15px;
}

.page-resources-vn8day-review-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  text-align: center;
}

.page-resources-vn8day-review-guide__feature-item {
  background-color: #f0f4f7;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-resources-vn8day-review-guide__feature-item:hover {
  transform: translateY(-5px);
}

.page-resources-vn8day-review-guide__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2)); /* Add subtle shadow for icons */
}

.page-resources-vn8day-review-guide__feature-heading {
  font-size: 1.5em;
  color: #0A2E36;
  margin-bottom: 15px;
}

.page-resources-vn8day-review-guide__product-review {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-vn8day-review-guide__product-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-resources-vn8day-review-guide__product-item:hover {
  transform: translateY(-5px);
}

.page-resources-vn8day-review-guide__product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #E0B34C;
}

.page-resources-vn8day-review-guide__product-heading {
  font-size: 1.6em;
  color: #0A2E36;
  padding: 20px 15px 10px;
}

.page-resources-vn8day-review-guide__product-item p {
  padding: 0 15px 20px;
  color: #333;
}

.page-resources-vn8day-review-guide__list-numbered,
.page-resources-vn8day-review-guide__list-bullet {
  list-style-position: inside;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-resources-vn8day-review-guide__list-numbered li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333;
}

.page-resources-vn8day-review-guide__list-bullet li {
  margin-bottom: 8px;
  font-size: 1.1em;
  color: #333;
  list-style-type: '✅ ';
}

.page-resources-vn8day-review-guide__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-vn8day-review-guide__image-medium {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-vn8day-review-guide__app-download {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-resources-vn8day-review-guide__app-platform {
  text-align: center;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  flex: 1 1 45%;
  max-width: 45%;
}

.page-resources-vn8day-review-guide__app-platform h4 {
  font-size: 1.6em;
  color: #0A2E36;
  margin-bottom: 15px;
}

.page-resources-vn8day-review-guide__qr-code {
  width: 150px;
  height: 150px;
  margin: 20px auto;
  display: block;
  border: 5px solid #E0B34C;
  border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources-vn8day-review-guide__hero-title {
    font-size: 2.8em;
  }
  .page-resources-vn8day-review-guide__hero-subtitle {
    font-size: 1.1em;
  }
  .page-resources-vn8day-review-guide__section-title {
    font-size: 2em;
  }
  .page-resources-vn8day-review-guide__sub-heading {
    font-size: 1.5em;
  }
  .page-resources-vn8day-review-guide__feature-grid,
  .page-resources-vn8day-review-guide__product-review {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-resources-vn8day-review-guide__app-platform {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-resources-vn8day-review-guide__hero-section {
    padding: 80px 0;
  }
  .page-resources-vn8day-review-guide__hero-title {
    font-size: 2.2em;
  }
  .page-resources-vn8day-review-guide__hero-subtitle {
    font-size: 1em;
  }
  .page-resources-vn8day-review-guide__content-section {
    padding: 40px 0;
  }
  .page-resources-vn8day-review-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-vn8day-review-guide__sub-heading {
    font-size: 1.3em;
  }
  .page-resources-vn8day-review-guide__feature-grid,
  .page-resources-vn8day-review-guide__product-review {
    grid-template-columns: 1fr;
  }
  .page-resources-vn8day-review-guide__image-medium {
    max-width: 100%;
  }
}