/* [project]/src/app/our-story/our-story.css [app-client] (css) */
.story-page {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  min-height: 90vh;
  padding: 4rem 2rem;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
}

.story-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: .8s ease-out forwards fadeInUp;
}

.story-header h1 {
  color: #004aad;
  background: linear-gradient(135deg, #004aad, #1c2253);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 700;
}

.story-header p {
  color: #666;
  font-size: 1.3rem;
  font-weight: 400;
}

.story-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.story-section {
  background: #fff;
  border: 4px solid;
  border-image: linear-gradient(45deg, #fdd835, #43a047) 1;
  border-radius: 20px;
  padding: 3rem;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
}

.story-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

.story-section h2 {
  color: #004aad;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
  position: relative;
}

.story-section h2:after {
  content: "";
  background: linear-gradient(90deg, #fdd835, #43a047);
  border-radius: 2px;
  width: 80px;
  height: 3px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.story-text {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.8;
}

.story-text p {
  text-align: justify;
  margin-bottom: 1.5rem;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-question {
  color: #2c3e50;
  text-align: center;
  background: linear-gradient(135deg, #fdd835, #ffeb3b);
  border-left: 4px solid #f39c12;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  padding: 1.5rem;
  font-style: italic;
  font-weight: 500;
  display: flex;
  box-shadow: 0 4px 16px rgba(253, 216, 53, .3);
}

.story-question p {
  text-align: center;
  margin: 0;
}

.story-conclusion {
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #004aad, #1c2253);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  padding: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  box-shadow: 0 4px 16px rgba(0, 74, 173, .3);
}

.story-conclusion p {
  text-align: center;
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.story-section {
  animation: .8s ease-out forwards fadeInUp;
}

@media (max-width: 768px) {
  .story-page {
    padding: 2rem 1rem;
  }

  .story-header h1 {
    font-size: 2.2rem;
  }

  .story-section {
    padding: 2rem;
  }

  .story-section h2 {
    font-size: 1.6rem;
  }

  .story-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .story-question {
    padding: 1.2rem;
    font-size: 1rem;
  }

  .story-conclusion {
    padding: 1.5rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .story-header h1 {
    font-size: 1.8rem;
  }

  .story-header p {
    font-size: 1.1rem;
  }

  .story-section {
    padding: 1.5rem;
  }

  .story-section h2 {
    font-size: 1.4rem;
  }

  .story-text {
    font-size: .95rem;
  }
}

/*# sourceMappingURL=src_app_our-story_our-story_7502d198.css.map*/