body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #dde8f5, #eaf1fb);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.mica-glass {
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  padding: 30px;

}

.container {
  max-width: 1000px;
  width: 100%;
}

.columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.column-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 250px;
}

h2 {
  margin-bottom: 10px;
  font-weight: 600;
  color: #1a1a1a;
}

.fluent-button {
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: white;
  background-color: #c9d1d9;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;

  display: flex;
  align-items: center;
  justify-content: center; /* КЛЮЧЕВОЕ */
  gap: 8px;
}
 
.fluent-button:hover {
  background-color: #0066cc;
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.fluent-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fluent-button .btn-icon {
  width: auto;
  height: 20px;
}
/* блок нижний банков*/
.payment-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.payment-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;                 /* расстояние между иконкой и текстом */
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    color: #222;
    transition: all 0.2s ease;
    
}

.payment-btn:hover {
    background-color: #f5f5f5;
    border-color: #b5b5b5;
}

.payment-icon {
    width: auto;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}