/* Payment Section Styles */
.payment-section {
    background-color: var(--white);
    padding: 48px 0;
  }
  
  .payment-container {
    text-align: center;
  }
  
  .payment-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--black);
  }
  
  .payment-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
  }
  
  @media (max-width: 576px) {
    .payment-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .payment-buttons .btn {
      width: 100%;
      max-width: 300px;
    }
  }