.refund-section {
  background: var(--section-background-2);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.refund-container {
  background: var(--section-background-1);
  padding: 40px 50px;
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.refund-container h2 {
  font-size: 32px;
  margin-bottom: 25px;
  font-weight: 700;
  text-align: center;
}

.refund-container p{
    flex-direction: column;
}

.policy-block {
  margin-bottom: 25px;
}

.policy-block h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary-text-color);
}

.policy-block p {
  text-align: justify;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.refund-container h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 12px;
}

.refund-container a {
  color: var(--tertiary-text-color);
  text-decoration: none;
  font-weight: 500;
}

.refund-container a:hover {
  text-decoration: underline;
}


