.remittance-section {
  padding: 80px 0;
  min-height: calc(100vh - 76px);
  //background: linear-gradient(135deg, #fff 0%, var(--light-bg) 100%);
}

.illustration-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.illustration-container img {
  max-width: 100%;
  height: auto;
}

.remittance-form-container {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.remittance-form-container h2 {
  margin-bottom: 2rem;
  color: var(--text-color);
  font-weight: 600;
}

.delivery-methods {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.method-option {
  flex: 1;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.method-option.active {
  border-color: var(--primary-color);
  background-color: rgba(37, 99, 235, 0.1);
}

.method-option img {
  width: 32px;
  height: 32px;
  margin-bottom: 0.5rem;
}

.method-option span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-color);
}

.payment-methods {
  margin-top: 0.5rem;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1rem;
}

.payment-option {
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-option:hover {
  border-color: var(--primary-color);
  background-color: rgba(37, 99, 235, 0.1);
}

.payment-option img {
  width: 32px;
  height: 32px;
  margin-bottom: 0.5rem;
}

.payment-option span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-color);
}

.exchange-rate {
  font-size: 0.9rem;
  color: #6b7280;
}

.recipient-amount {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .illustration-container {
    display: none;
  }

  .remittance-form-container {
    margin-top: 1rem;
  }
}
