.aura-story {
    font-family: 'Inter', sans-serif;
    background-color: #1d1c1ce1;
    border: none;
    padding: 60px 30px;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.05);
    width: 100%;
    text-align: center;
    color: #eeeeee;
    position: relative;
    overflow: hidden;
  }
  
  .aura-story h2 {
    font-family: var(--chioary-font-two);
    font-size: 36px;
    color: var(--chioary-base);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom:2%;
  }
  
  .aura-story .intro {
    color: #f0c961;
    font-size: 20px;
    font-weight: 600;
    margin-bottom:2%;
    font-family: 'Inter', sans-serif;
  }
  
  .aura-story ul {
    list-style: none;
    padding: 0;
    font-size: 17px;
    line-height: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
  }
  
  .aura-story ul li {
    margin-bottom: 0%;
    position: relative;
    padding-left: 28px;
  }
  
  .aura-story ul li::before {
    content: "☉";
    position: absolute;
    left: 0;
    color: #ffcc00;
    font-size: 16px;
    top: 2px;
  }
  
  .aura-story .emphasis {
    color: #f7d380;
    font-weight: 600;
  }
  
  .aura-story .highlight {
    color: #fcebc9;
    font-weight: 400;
  }
  
  @media (max-width: 768px) {
    .aura-story {
      padding: 40px 20px;
    }
  
    .aura-story h2 {
      font-size: 30px;
    }
  
    .aura-story .intro {
      font-size: 18px;
    }
  
    .aura-story ul {
      padding: 0 10px;
    }
  }