.included-section {
  background: #fff;
  padding: 80px 20px;
}

.included-section__container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.included-section__info {
  flex: 1 1 420px;
}

.included-section__subtitle {
  font-size: 14px;
  text-transform: uppercase;
  color: #000F20;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.included-section__title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #000F20;
  font-family: 'Playfair Display', serif; /* 艺术风格标题 */
}

.included-section__title .highlight {
  color: #FBCA19;
  font-style: italic;
}

.included-section__info p {
  color: #333333;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.included-section__cta {
  display: inline-block;
  padding: 12px 24px;
  background: #FBCA19;
  color: #000F20;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  margin-top: 16px;
  transition: background 0.3s ease;
}

.included-section__cta:hover {
  background: #e4af15;
}

.included-section__accordion {
  flex: 1 1 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: #fff;
  border-left: 5px solid #FBCA19;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.accordion-header {
  padding: 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #000F20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-content {
  display: none;
  padding-left: 1em;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
  display: block;
}

.toggle-icon {
  background: #000F20;
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
}


