/* Payments Page Styles */

.payments-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}

.payments-main {
  background: #fff;
}

.payments-sidebar {
  background: #fff;
}

.payment-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.payment-description p {
  color: #666;
  margin-bottom: 2rem;
}

.support-section,
.payment-info-section {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sidebar-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
}

.contact-item,
.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-item i,
.info-item i {
  color: #186396;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.contact-details,
.info-details {
  flex: 1;
}

.contact-details strong,
.info-details strong {
  display: block;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.25rem;
}

.contact-details a, .contact-details a:hover {
  color: #186396;
  text-decoration: underline;
}

.info-details p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .payments-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .payments-main {
    order: 1;
  }
  
  .payments-sidebar {
    order: 2;
  }
}
