/* Fullscreen Payment Section */
.payment-fullscreen {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff, #f3f8fc);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
  }
  
  /* Container */
  .payment-container {
    text-align: center;
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
  }
  
  /* Title & Slogan */
  .payment-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2c3e50;
  }
  
  .payment-slogan {
    font-size: 18px;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
  }
  
  /* Payment Icons */
  .payment-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .icon-wrapper {
    width: 120px;
    height: 120px;
    background: #f1f1f1;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .icon-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .icon-wrapper img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
  }
  