body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f7f8f9;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
}

.refund-card {
  background-color: white;
  max-width: 600px;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.refund-card h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blue-line {
  width: 100%;
  height: 3px;
  background-color: #1290ff;
  border: none;
  margin-bottom: 1.5rem;
}

.refund-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.support-box {
  border-left: 5px solid #1290ff;
  background-color: #f8f9fa;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.support-box a {
  color: #1290ff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.support-box a:hover {
  text-decoration: underline;
}


.note {
  font-size: 0.95rem;
  color: #555;
}
