/* Story page specific styles */
.story-container {
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
}

.story-hero {
  background: linear-gradient(135deg, #6ecc94 0%, #5ab87a 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
}

.story-hero .container {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.story-title {
  font-size: 2.5em;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.2;
}

.story-subtitle {
  font-size: 1.3em;
  font-weight: 400;
  opacity: 0.9;
  margin: 0;
}

@media (max-width: 768px) {
  .story-title {
    font-size: 2em;
  }

  .story-subtitle {
    font-size: 1.1em;
  }
}

.story-content {
  padding: 60px 0;
}

.story-content .container {
  flex-direction: column;
  align-items: flex-start;
  max-width: 800px;
}

.content {
  width: 100%;
  line-height: 1.8;
}

.story-heading {
  font-size: 1.8em;
  font-weight: 700;
  color: #2c3e50;
  margin: 50px 0 25px 0;
  padding-bottom: 10px;
  border-bottom: 3px solid #6ecc94;
  position: relative;
}

.story-heading:first-of-type {
  margin-top: 0;
}

.story-paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
  color: #444;
}

.story-paragraph.highlight {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #6ecc94;
  font-weight: 500;
  margin: 30px 0;
}

.story-quote {
  background-color: #f8f9fa;
  border: none;
  border-left: 4px solid #6ecc94;
  padding: 25px 30px;
  margin: 40px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  position: relative;
}

.story-quote p {
  font-size: 1.2em;
  font-weight: 500;
  color: #2c3e50;
  margin: 0;
  line-height: 1.6;
}

.story-quote::before {
  content: '"';
  font-size: 4em;
  color: #6ecc94;
  position: absolute;
  top: -10px;
  right: 20px;
  line-height: 1;
}

.stats-container {
  background: linear-gradient(135deg, #6ecc94 0%, #5ab87a 100%);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  margin: 50px 0;
  text-align: center;
}

.stats-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.5;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 20px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3em;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 1.1em;
  font-weight: 500;
  opacity: 0.9;
}

.stats-note {
  font-size: 1.1em;
  font-weight: 500;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
    gap: 30px;
  }

  .stat-number {
    font-size: 2.5em;
  }
}

.features-list {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  margin: 30px 0;
  border-left: 4px solid #6ecc94;
}

.features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
  position: relative;
  padding-right: 25px;
  font-size: 1.05em;
  line-height: 1.6;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li::before {
  content: "✓";
  color: #6ecc94;
  font-weight: bold;
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 1.2em;
}

/* Responsive design */
@media (max-width: 768px) {
  .story-content {
    padding: 40px 0;
  }

  .story-content .container {
    padding: 0 20px;
  }

  .story-heading {
    font-size: 1.5em;
    margin: 40px 0 20px 0;
  }

  .story-paragraph {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .story-quote {
    padding: 20px;
    margin: 30px 0;
  }

  .story-quote p {
    font-size: 1.1em;
  }

  .stats-container {
    padding: 30px 20px;
    margin: 40px 0;
  }

  .stats-title {
    font-size: 1.2em;
  }

  .features-list {
    padding: 20px;
    margin: 25px 0;
  }

  .features-list li {
    font-size: 1em;
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .story-hero {
    padding: 60px 0 40px;
  }

  .story-title {
    font-size: 1.8em;
  }

  .story-subtitle {
    font-size: 1em;
  }

  .story-content {
    padding: 30px 0;
  }

  .story-heading {
    font-size: 1.3em;
  }

  .story-paragraph {
    font-size: 0.95em;
  }
}
