/* style/resources-13win-latest-features.css */

/* --- Base Styles & Typography --- */
.page-resources-13win-latest-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: var(--secondary-color, #FFFFFF); /* Ensure page background is light */
}

.page-resources-13win-latest-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-13win-latest-features__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-13win-latest-features__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #26A9E0; /* Brand primary color for titles */
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-13win-latest-features__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  border-radius: 2px;
}

.page-resources-13win-latest-features__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

/* --- Hero Section --- */
.page-resources-13win-latest-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #26A9E0, #FFFFFF); /* Gradient background for visual appeal */
  color: #ffffff; /* White text for gradient background */
}

.page-resources-13win-latest-features__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-13win-latest-features__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-13win-latest-features__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-13win-latest-features__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-13win-latest-features__hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-13win-latest-features__hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-13win-latest-features__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #EA7C07; /* Login color for CTA button */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-13win-latest-features__cta-button:hover {
  background: #D27006; /* Slightly darker on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-13win-latest-features__cta-button--large {
  padding: 18px 50px;
  font-size: 20px;
}

/* --- Overview Section --- */
.page-resources-13win-latest-features__overview-section {
  background-color: #f8f8f8;
}

/* --- Features Highlight Section --- */
.page-resources-13win-latest-features__features-highlight-section {
  background-color: #ffffff;
}

.page-resources-13win-latest-features__feature-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  text-align: left;
}

.page-resources-13win-latest-features__feature-item:last-child {
  margin-bottom: 0;
}

.page-resources-13win-latest-features__feature-item--reverse {
  flex-direction: row-reverse;
}

.page-resources-13win-latest-features__feature-content {
  flex: 1;
}

.page-resources-13win-latest-features__feature-title {
  font-size: 28px;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
}

.page-resources-13win-latest-features__feature-content p {
  font-size: 17px;
  color: #444444;
  margin-bottom: 15px;
}

.page-resources-13win-latest-features__feature-image {
  flex: 1;
  min-width: 400px; /* Minimum width to prevent images from becoming too small */
}

.page-resources-13win-latest-features__feature-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px; /* Enforce minimum size for content images */
}

/* --- Benefits Section --- */
.page-resources-13win-latest-features__benefits-section {
  background-color: #26A9E0; /* Primary brand color as background */
  color: #ffffff; /* White text for dark background */
}

.page-resources-13win-latest-features__benefits-section .page-resources-13win-latest-features__section-title {
  color: #ffffff;
}

.page-resources-13win-latest-features__benefits-section .page-resources-13win-latest-features__section-title::after {
  background-color: #ffffff;
}

.page-resources-13win-latest-features__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-13win-latest-features__benefit-card {
  background-color: rgba(255, 255, 255, 0.15); /* Semi-transparent white card */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
  min-height: 200px;
}

.page-resources-13win-latest-features__benefit-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.25);
}

.page-resources-13win-latest-features__benefit-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-resources-13win-latest-features__benefit-card p {
  font-size: 16px;
  color: #f0f0f0;
}

/* --- How to Download Section --- */
.page-resources-13win-latest-features__how-to-download-section {
  background-color: #f8f8f8;
}

.page-resources-13win-latest-features__download-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.page-resources-13win-latest-features__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.page-resources-13win-latest-features__step-item:hover {
  transform: translateY(-5px);
}

.page-resources-13win-latest-features__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #26A9E0;
  color: #ffffff;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(38, 169, 224, 0.4);
}

.page-resources-13win-latest-features__step-title {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 15px;
}

.page-resources-13win-latest-features__step-item p {
  font-size: 16px;
  color: #555555;
}

.page-resources-13win-latest-features__download-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}

.page-resources-13win-latest-features__download-cta img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px; /* Enforce minimum size for content images */
}

/* --- FAQ Section --- */
.page-resources-13win-latest-features__faq-section {
  background-color: #ffffff;
  text-align: left;
}

.page-resources-13win-latest-features__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-resources-13win-latest-features__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-resources-13win-latest-features__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

/* FAQ展开状态 - 🚨 使用!important和足够大的max-height确保一定能展开 */
.page-resources-13win-latest-features__faq-item.active .page-resources-13win-latest-features__faq-answer {
  max-height: 2000px !important; /* 🚨 使用!important确保优先级，值足够大以容纳任何内容 */
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #333333; /* Ensure text is dark on light background */
}

.page-resources-13win-latest-features__faq-item.active .page-resources-13win-latest-features__faq-answer p {
  color: #333333; /* Ensure text is dark on light background */
}

/* 问题样式 */
.page-resources-13win-latest-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-13win-latest-features__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-13win-latest-features__faq-question:active {
  background: #eeeeee;
}

/* 问题标题样式 */
.page-resources-13win-latest-features__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none; /* 防止h3标签阻止点击事件 */
  color: #333333; /* Ensure text is dark on light background */
}

/* 切换图标 */
.page-resources-13win-latest-features__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* 防止图标阻止点击事件 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-resources-13win-latest-features__faq-item.active .page-resources-13win-latest-features__faq-toggle {
  color: #26A9E0; /* Brand color when active */
  transform: rotate(45deg); /* Plus to X/minus */
}

/* --- CTA Bottom Section --- */
.page-resources-13win-latest-features__cta-bottom-section {
  background-color: #26A9E0; /* Primary brand color */
  color: #ffffff;
  padding: 80px 0;
}

.page-resources-13win-latest-features__cta-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-resources-13win-latest-features__cta-bottom-section .page-resources-13win-latest-features__section-title {
  color: #ffffff;
  margin-bottom: 20px;
}

.page-resources-13win-latest-features__cta-bottom-section .page-resources-13win-latest-features__section-title::after {
  background-color: #ffffff;
}

.page-resources-13win-latest-features__cta-bottom-section .page-resources-13win-latest-features__text-block {
  color: #f0f0f0;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-resources-13win-latest-features__hero-content h1 {
    font-size: 40px;
  }

  .page-resources-13win-latest-features__section-title {
    font-size: 32px;
  }
}