/* style/index-win79-features.css */
.page-index-win79-features {
  font-family: 'Arial', sans-serif;
  color: #2C3E50; /* Dark text for light backgrounds */
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-index-win79-features .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-win79-features .hero-section {
  background: linear-gradient(135deg, #FFD700, #2C3E50);
  color: #FFFFFF; /* Light text for dark/gradient background */
  padding: 100px 0;
  text-align: center;
}

.page-index-win79-features .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
}

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

.page-index-win79-features .hero-actions .btn {
  margin: 10px;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-win79-features .btn-primary {
  background-color: #E74C3C; /* CTA Red */
  color: #FFFFFF;
  border: none;
}

.page-index-win79-features .btn-primary:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.page-index-win79-features .btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-win79-features .btn-secondary:hover {
  background-color: #FFD700;
  color: #2C3E50;
  transform: translateY(-2px);
}

.page-index-win79-features .section-title {
  font-size: 2.5em;
  color: #2C3E50;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-win79-features .section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
  color: #555;
}

.page-index-win79-features .features-overview,
.page-index-win79-features .detailed-advantages,
.page-index-win79-features .cta-section {
  padding: 80px 0;
}

.page-index-win79-features .features-overview {
  background-color: #FFFFFF;
}

.page-index-win79-features .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-win79-features .feature-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-win79-features .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-index-win79-features .feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-win79-features .feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-win79-features .feature-text {
  font-size: 1em;
  color: #555;
}

.page-index-win79-features .detailed-advantages {
  background-color: #f0f2f5;
}

.page-index-win79-features .advantage-block {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}

.page-index-win79-features .advantage-block:last-child {
  margin-bottom: 0;
}

.page-index-win79-features .advantage-block.reverse {
  flex-direction: row-reverse;
}

.page-index-win79-features .advantage-content {
  flex: 1;
}

.page-index-win79-features .advantage-image {
  flex: 1;
  text-align: center;
}

.page-index-win79-features .advantage-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-index-win79-features .advantage-title {
  font-size: 2em;
  color: #2C3E50;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-win79-features .advantage-content p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 15px;
}

.page-index-win79-features .cta-section {
  background-color: #2C3E50;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-index-win79-features .cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
}

.page-index-win79-features .cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-index-win79-features .cta-actions .btn {
  margin: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-win79-features .hero-title {
    font-size: 2.8em;
  }
  .page-index-win79-features .section-title {
    font-size: 2em;
  }
  .page-index-win79-features .advantage-block {
    flex-direction: column;
    text-align: center;
  }
  .page-index-win79-features .advantage-block.reverse {
    flex-direction: column;
  }
  .page-index-win79-features .advantage-image {
    margin-top: 30px;
  }
  .page-index-win79-features .advantage-title {
    font-size: 1.8em;
  }
  .page-index-win79-features .cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-index-win79-features .hero-section,
  .page-index-win79-features .features-overview,
  .page-index-win79-features .detailed-advantages,
  .page-index-win79-features .cta-section {
    padding: 60px 0;
  }
  .page-index-win79-features .hero-title {
    font-size: 2.2em;
  }
  .page-index-win79-features .hero-description {
    font-size: 1em;
  }
  .page-index-win79-features .section-title {
    font-size: 1.8em;
  }
  .page-index-win79-features .section-description {
    font-size: 0.95em;
  }
  .page-index-win79-features .feature-grid {
    grid-template-columns: 1fr;
  }
  .page-index-win79-features .advantage-title {
    font-size: 1.6em;
  }
  .page-index-win79-features .advantage-content p {
    font-size: 1em;
  }
  .page-index-win79-features .cta-title {
    font-size: 2em;
  }
  .page-index-win79-features .cta-description {
    font-size: 1em;
  }
  .page-index-win79-features .hero-actions .btn,
  .page-index-win79-features .cta-actions .btn {
    display: block;
    width: fit-content;
    margin: 15px auto;
  }
}