/* style/index-promotion-spotlight.css */
.page-index-promotion-spotlight {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-index-promotion-spotlight__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.page-index-promotion-spotlight__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-index-promotion-spotlight__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-promotion-spotlight__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-index-promotion-spotlight__hero-image-wrapper {
  margin-top: 40px;
  max-width: 800px;
  width: 100%;
  z-index: 1;
}

.page-index-promotion-spotlight__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-index-promotion-spotlight__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-index-promotion-spotlight__section-title {
  font-size: 2.5em;
  color: #0056b3;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-promotion-spotlight__section-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-promotion-spotlight__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 10px;
}

.page-index-promotion-spotlight__button--primary {
  background-color: #ffc107;
  color: #0056b3;
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.page-index-promotion-spotlight__button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-index-promotion-spotlight__button--secondary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.page-index-promotion-spotlight__button--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-3px);
}

.page-index-promotion-spotlight__features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-index-promotion-spotlight__feature-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  max-width: 300px;
  transition: transform 0.3s ease;
}

.page-index-promotion-spotlight__feature-item:hover {
  transform: translateY(-10px);
}

.page-index-promotion-spotlight__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-index-promotion-spotlight__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-index-promotion-spotlight__feature-item p {
  color: #666;
}

.page-index-promotion-spotlight__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-promotion-spotlight__promo-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.page-index-promotion-spotlight__promo-card:hover {
  transform: translateY(-10px);
}

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

.page-index-promotion-spotlight__promo-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index-promotion-spotlight__promo-text {
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-promotion-spotlight__promo-card .page-index-promotion-spotlight__button {
  width: fit-content;
  margin-top: auto;
  padding: 10px 20px;
  font-size: 1em;
}

.page-index-promotion-spotlight__section--guide {
  background-color: #e9f5ff;
}

.page-index-promotion-spotlight__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-promotion-spotlight__step-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-index-promotion-spotlight__step-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-promotion-spotlight__step-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-index-promotion-spotlight__step-item p {
  color: #555;
  margin-bottom: 20px;
}

.page-index-promotion-spotlight__step-item a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-index-promotion-spotlight__step-item a:hover {
  text-decoration: underline;
}

.page-index-promotion-spotlight__section--tips {
  background-color: #f0f0f0;
}

.page-index-promotion-spotlight__tips-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-index-promotion-spotlight__tips-image {
  flex: 1; /* Allow image to grow */
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-index-promotion-spotlight__tip-list {
  flex: 1.5; /* Allow list to grow more */
  min-width: 300px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-index-promotion-spotlight__tip-list li {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 1.8;
}

.page-index-promotion-spotlight__tip-list li strong {
  color: #007bff;
}

.page-index-promotion-spotlight__section--safety {
  background-color: #fff;
}

.page-index-promotion-spotlight__safety-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-index-promotion-spotlight__safety-item {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  max-width: 300px;
}

.page-index-promotion-spotlight__safety-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.page-index-promotion-spotlight__safety-title {
  font-size: 1.6em;
  color: #ffc107;
  margin-bottom: 10px;
}

.page-index-promotion-spotlight__safety-item p {
  color: #666;
}

.page-index-promotion-spotlight__cta-banner {
  background: linear-gradient(45deg, #0056b3, #007bff);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  margin-top: 60px;
}

.page-index-promotion-spotlight__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffc107;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-index-promotion-spotlight__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-promotion-spotlight__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-promotion-spotlight__hero {
    padding: 60px 20px;
  }
  .page-index-promotion-spotlight__title {
    font-size: 2.8em;
  }
  .page-index-promotion-spotlight__subtitle {
    font-size: 1.1em;
  }
  .page-index-promotion-spotlight__section-title {
    font-size: 2em;
  }
  .page-index-promotion-spotlight__hero-image-wrapper {
    margin-top: 20px;
  }
  .page-index-promotion-spotlight__tips-content {
    flex-direction: column;
    text-align: center;
  }
  .page-index-promotion-spotlight__tips-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-index-promotion-spotlight__hero {
    flex-direction: column;
  }
  .page-index-promotion-spotlight__hero-content {
    order: 2;
  }
  .page-index-promotion-spotlight__hero-image-wrapper {
    order: 1;
    margin-bottom: 30px;
  }
  .page-index-promotion-spotlight__title {
    font-size: 2.2em;
  }
  .page-index-promotion-spotlight__section {
    padding: 40px 15px;
  }
  .page-index-promotion-spotlight__features, .page-index-promotion-spotlight__promo-grid, .page-index-promotion-spotlight__steps, .page-index-promotion-spotlight__safety-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index-promotion-spotlight__feature-item, .page-index-promotion-spotlight__promo-card, .page-index-promotion-spotlight__step-item, .page-index-promotion-spotlight__safety-item {
    max-width: 100%;
    padding: 20px;
  }
  .page-index-promotion-spotlight__cta-title {
    font-size: 2.2em;
  }
  .page-index-promotion-spotlight__cta-description {
    font-size: 1em;
  }
  .page-index-promotion-spotlight__button {
    width: 100%;
    margin: 5px 0;
  }
  .page-index-promotion-spotlight__cta-buttons {
    flex-direction: column;
  }
  .page-index-promotion-spotlight__tip-list {
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .page-index-promotion-spotlight__title {
    font-size: 1.8em;
  }
  .page-index-promotion-spotlight__subtitle {
    font-size: 0.9em;
  }
  .page-index-promotion-spotlight__section-title {
    font-size: 1.8em;
  }
  .page-index-promotion-spotlight__promo-title {
    font-size: 1.5em;
  }
  .page-index-promotion-spotlight__step-title, .page-index-promotion-spotlight__safety-title {
    font-size: 1.4em;
  }
  .page-index-promotion-spotlight__cta-title {
    font-size: 1.8em;
  }
}