.about-pro-section {
    background: var(--body-color);
    color: var(--p);
  }
  
  .about-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
  }
  
  .about-row.reverse {
    flex-direction: column-reverse;
  }
  
  .about-img img {
    width: 100%;
    max-width: 500px;
    margin-top: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  }
  
  .about-text {
    max-width: 600px;
    text-align: left;
  }
  
  .about-text h3 {
    color: var(--h3-color);
    font-size: 1.75rem;
    margin-bottom: 15px;
  }
  
  .about-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--p);
  }
  
  .roadmap-list {
    list-style: none;
    padding-left: 0;
  }
  
  .roadmap-list li {
    background: var(--container);
    color: var(--p);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }
  
  @media (min-width: 768px) {
    .about-row {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .about-row.reverse {
      flex-direction: row-reverse;
    }
  
    .about-img,
    .about-text {
      flex: 1;
    }
  
    .about-text {
      padding: 0 40px;
    }
  }  
  

.anysti-logo {
    width: 200px;
    height: auto;
}

.bio-hero-right {
    text-align: left;
}

.bio-hero-right h1 {
    font-weight: bold;
    color: var(--h1-color); 
    margin-bottom: 5px;
}

.bio-hero-right h2 {
    color: var(--h2-color); 
    margin-bottom: 15px;
}

.bio-hero-right p {
    margin-right: 20px;
    color: var(--p);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: var(--container);
    color: var(--p);
    border-radius: 8px;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    background: #222;
    color: white;
    padding: 15px;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 5px;
}

.faq-answer {
    display: none;
    padding: 10px;
    background: #333;
    border-radius: 5px;
}

.faq-question:focus + .faq-answer,
.faq-question:active + .faq-answer {
    display: block;
}

.bio {
    margin-top: 20px;
    margin-left: 20px; 
    margin-right: 20px;
}