.payment-section {
  max-width: 650px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fdfdfd;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #333;
}

.payment-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #444;
}

.payment-options p {
  margin: 0.75rem 0;
  font-size: 1rem;
}

.payment-options i {
  color: #0066cc;
  margin-right: 8px;
}

.or-text {
  text-align: center;
  font-weight: bold;
  margin: 1rem 0;
  color: #555;
}

.step-list {
  margin-left: 2rem;
  border-left: 3px solid #e0e0e0;
  padding-left: 1rem;
}

.step-list p {
  display: flex;
  align-items: center;   
  gap: 10px;             
  margin: 0.5rem 0;
}

.step-list i {
  flex: 0 0 auto;
}

.step-text {
  flex: 1;               
  line-height: 1.6;
}

.payment-section a {
  line-height: inherit;
  word-break: break-word;     
  overflow-wrap: anywhere;    
}


.pay-btn {
  background: #0077cc;
  color: white;
  border: none;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}


.payment-address {
  text-align: center;
}


.payment-address p {
  margin-top: 2rem;
  line-height: 1.5;
  color: #555;
}

/*** Media Queries ***/

@media (max-width: 600px) {
  .payment-section {
    padding: 1.2rem;          
  }

  .payment-section h2 {
    font-size: 1.4rem;        
  }

  .payment-options p {
    font-size: 0.95rem;       
  }

  .pay-btn {
    width: 100%;              
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.6rem;
    font-size: 1rem;
  }

  .step-list {
    margin-left: 1rem;        
    padding-left: 0.7rem;
    border-left: 2px solid #e0e0e0;
  }

  .step-list p {
    font-size: 0.95rem;
    flex-wrap: wrap;         
  }

  .payment-address {
    font-size: 0.95rem;
  }
}


