body {
    background-color: #000;
    color: #fff;
    font-family: 'Chakra Petch', sans-serif;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }
  
  .section-header {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: bold;
  }
  
  /* About Section */
  .about {
    padding: 60px 20px;
  }
  
  .about h3 {
    color: #f0f0f0;
    margin-top: 20px;
    font-size: 3em;
  }

  .col-lg-6{
    margin-top: 3rem;
  }

  .col-lg-6 p{
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .about ul {
    list-style: none;
    padding: 0;
  }
  
  .about ul li {
    padding: 8px 0;
    font-size: 1.3em;
    transition: all 0.3s ease-in-out;
  }
  
  .about ul li i {
    color: #00ffcc;
    margin-right: 10px;
    font-size: 1.6rem;
  }
  
  .about ul li:hover {
    color: #00ffcc;
    transform: translateX(10px);
  }
  
  .image-fade-in {
    width: 100%;
    margin-top: 15px;
    border-radius: 10px;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
  }
  
  /* CTA Section */
  .cta {
    text-align: center;
    background: linear-gradient(135deg, #111, #222);
    padding: 60px 20px;
    margin-top: 40px;
    border-radius: 15px;
  }
  
  .cta h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #fff;
  }
  .btn-primary {
    padding: 1rem 3rem;
    /*background-color: #8b6fdb;
    */
    background-color: rgb(255, 255, 255, 0.5);
    color: #000;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 5px;
    font-size: 1.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;

    border-bottom: 3px solid white;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
  
  .btn-primary:hover {
    background: #fff;
    color: #000;
  }
  
  /* Fade-in Animation */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-in-out forwards;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media screen and (max-width: 412px) {


    .section-header h2{
      font-size: 2rem;
    }

    .section-header p{
      font-size: 1.2rem;
      margin-top: 1rem;
    }


    .col-lg-6 h3{
      font-size: 1.5rem;

      & i{
        font-size: 1.5rem;
      }
    }
    .col-lg-6 p {
      margin-top: 1rem;
      font-size: 1rem;
      letter-spacing: 0.04rem;
    }

    .about ul li{
      font-size: 1rem;

      & i{
        font-size: 1rem;
        /* margin-right: -0.05rem; */
      }
    }

    .cta h2 {
      font-size: 1.8rem;
      margin-bottom: 3rem;
    }

    .cta .btn-primary{
      font-size: 1.2rem;
     
    }

  }