.buy-section {
    background-color: #080731;
    padding: 5rem 1rem;
    color: #ffffff;
    text-align: center;
    font-weight: bold; /* Make all text bold */
  }
  
  .buy-heading {
    font-size: 5rem;
    font-family: 'Anton', sans-serif;
    margin-bottom: 1rem;
    color: #e50914;
 
  }
  
  .buy-subtext {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
  }
  
  .buy-inner-container {
    background-color: #484788;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid white;
    padding: 30px;
    border-radius: 20px;
  }
  
  .buy-flex-wrapper {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .buy-content {
    flex: 1 1 55%;
    text-align: left;
  }
  
  .buy-steps {
    list-style: none;
    padding-left: 0;
  }
  
  .buy-steps h3{
    font-size: 2.6rem;
    
    font-family: 'Anton', sans-serif;
  }
  .buy-steps li {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    line-height: 1.7;
    color: #f1f1f1;
  }
  
  .buy-steps li span {
    color: #ffb347;
    font-size: 1.2rem;
  }
  
  .buy-cta {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #ffffff;
    background-color: #1a1a4a;
    padding: 1rem 1.5rem;
    border-left: 5px solid #e50914;
    border-radius: 10px;
  }
  
  .buy-image {
    flex: 1 1 40%;
    text-align: center;
  }
  
  .buy-image img {
    height: 800px;
    width: 100%;
    border-radius: 25px;

    object-fit: cover;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .buy-flex-wrapper {
      flex-direction: column-reverse;
      text-align: center;
    }
  
    .buy-content {
      text-align: center;
    }
  
    .buy-steps li {
      text-align: left;
    }
  }
  




  .ceo-section {
    background-color: #080731;
    color: white;
    padding: 5rem 1rem;
    font-weight: bold;
    text-align: center;
    border-bottom: 6px solid #e50914;
  }
  
  .ceo-heading {
    font-size: 4rem;
    color: #e50914;

    font-family: 'Anton', sans-serif;
    margin-bottom: 2.5rem;
  }
  
  .ceo-steps-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .ceo-step {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 0.8rem 1.2rem;
    border-left: 4px solid #e50914;
    border-radius: 6px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 600px;
    text-align: left;
  }
  
  .ceo-btn {
    background-color: #e50914;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: bold;
    margin-top: 2rem;
    display: inline-block;
  }
  

  .ceo-disclaimer {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    font-size: 0.9rem;
    color: #bbbbbb;
    text-align: center;
    line-height: 1.6;
    font-style: italic;
    padding: 0 1rem;
  }
  




  