/* style/jun88-review.css */
.page-jun88-review {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-jun88-review__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-jun88-review__hero-section {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-jun88-review__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[IMAGE:hero_main]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-jun88-review__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-jun88-review__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #eee;
  position: relative;
  z-index: 1;
}

.page-jun88-review__section {
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

.page-jun88-review__section:last-of-type {
  border-bottom: none;
}

.page-jun88-review__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-jun88-review__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-jun88-review__sub-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-jun88-review__sub-title--green {
  color: #28a745;
  border-left-color: #28a745;
}

.page-jun88-review__sub-title--red {
  color: #DC143C;
  border-left-color: #DC143C;
}

.page-jun88-review p {
  margin-bottom: 1em;
  color: #555;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-jun88-review .highlight {
  color: #003366;
  font-weight: bold;
}

.page-jun88-review__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-jun88-review__image--left {
  float: left;
  margin-right: 30px;
  width: 40%;
}

.page-jun88-review__image--right {
  float: right;
  margin-left: 30px;
  width: 40%;
}

.page-jun88-review__section::after {
  content: "";
  display: table;
  clear: both;
}

.page-jun88-review__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  text-align: center;
}

.page-jun88-review__btn--primary {
  background-color: #FFD700;
  color: #003366;
  border: 2px solid #FFD700;
  margin-top: 20px;
}

.page-jun88-review__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-jun88-review__btn--secondary {
  background-color: #003366;
  color: #fff;
  border: 2px solid #003366;
  margin-top: 20px;
}

.page-jun88-review__btn--secondary:hover {
  background-color: #002244;
  border-color: #002244;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-jun88-review__btn--link {
  background: none;
  color: #003366;
  border: none;
  padding: 0;
  margin-top: 10px;
  display: inline-block;
  font-size: 1em;
  text-decoration: underline;
}

.page-jun88-review__btn--link:hover {
  color: #FFD700;
  text-decoration: none;
}

.page-jun88-review__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 1em;
  color: #555;
  font-size: 1.1em;
}

.page-jun88-review__list li {
  margin-bottom: 0.5em;
}

.page-jun88-review__list-ordered {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 1em;
  color: #555;
  font-size: 1.1em;
}

.page-jun88-review__list-ordered li {
  margin-bottom: 1em;
}

.page-jun88-review__grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.page-jun88-review__grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-jun88-review__card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease;
}

.page-jun88-review__card:hover {
  transform: translateY(-5px);
}

.page-jun88-review__faq-item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-jun88-review__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-jun88-review__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
}

.page-jun88-review__faq-item.active .page-jun88-review__faq-question::after {
  content: '-';
}

.page-jun88-review__faq-answer {
  font-size: 1.1em;
  color: #666;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

.page-jun88-review__faq-item.active .page-jun88-review__faq-answer {
  display: block;
}

.page-jun88-review__detail-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-jun88-review__detail-card:hover {
  transform: translateY(-5px);
}

.page-jun88-review__detail-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-jun88-review__detail-title a {
  color: #003366;
  text-decoration: none;
}

.page-jun88-review__detail-title a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-jun88-review__detail-description {
  color: #666;
  font-size: 1em;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-jun88-review__hero-title {
    font-size: 2.8em;
  }

  .page-jun88-review__hero-subtitle {
    font-size: 1.3em;
  }

  .page-jun88-review__section-title {
    font-size: 2em;
  }

  .page-jun88-review__sub-title {
    font-size: 1.5em;
  }

  .page-jun88-review__image--left,
  .page-jun88-review__image--right {
    float: none;
    margin: 0 auto 30px;
    width: 80%;
    display: block;
  }

  .page-jun88-review__grid-2-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-jun88-review__hero-title {
    font-size: 2.2em;
  }

  .page-jun88-review__hero-subtitle {
    font-size: 1.1em;
  }

  .page-jun88-review__section-title {
    font-size: 1.8em;
  }

  .page-jun88-review__sub-title {
    font-size: 1.3em;
  }

  .page-jun88-review p,
  .page-jun88-review__list li,
  .page-jun88-review__list-ordered li,
  .page-jun88-review__faq-answer {
    font-size: 1em;
  }

  .page-jun88-review__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-jun88-review__grid-3-col {
    grid-template-columns: 1fr;
  }

  .page-jun88-review__faq-item {
    padding: 15px 20px;
  }

  .page-jun88-review__faq-question {
    font-size: 1.1em;
  }
}