/* Bio Section */
  #about {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
  }

  #about h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
  }

  .bio {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    line-height: 1.6;
  }

  /* Slogans Section */
  #slogans {
    padding: 50px 20px;
    background: #f5f5f5;
    text-align: center;
  }

  #slogans h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
  }

  .slogan-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .slogan {
    background: #4caf50;
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .slogan:hover {
    transform: translateY(-5px);
    background: #43a047;
  }