/** @format */

.container-refund {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.policy-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid #f39c12;
}

.policy-header h1 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.last-updated {
  color: #7f8c8d;
  font-size: 14px;
}

.policy-content {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.intro-text {
  background: #e8f5e9;
  padding: 20px;
  border-left: 4px solid #f39c12;
  margin-bottom: 30px;
  border-radius: 5px;
}

.intro-text p {
  margin: 0;
  color: #555;
}

.section {
  margin-bottom: 35px;
}

.section-number {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #f39c12;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  font-weight: bold;
  margin-right: 15px;
  font-size: 18px;
}

.section-title {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.section-content {
  padding-left: 50px;
  color: #555;
}

.section-content ul {
  list-style: none;
  padding-left: 0;
}

.section-content li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.section-content li:before {
  content: "✓";
  color: #f39c12;
  font-weight: bold;
  font-size: 18px;
  position: absolute;
  left: 0;
}

.eligible-box {
  background: #e8f5e9;
  border-left: 4px solid #f39c12;
  padding: 15px;
  margin: 15px 0;
  border-radius: 5px;
}

.not-eligible-box {
  background: #ffebee;
  border-left: 4px solid #f44336;
  padding: 15px;
  margin: 15px 0;
  border-radius: 5px;
}

.not-eligible-box ul {
  list-style: none;
  padding-left: 0;
}

.not-eligible-box li {
  padding: 5px 0;
  padding-left: 25px;
  position: relative;
}

.not-eligible-box li:before {
  content: "✗";
  color: #f44336;
  font-weight: bold;
  font-size: 18px;
  position: absolute;
  left: 0;
}

.warning-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 15px;
  margin: 15px 0;
  border-radius: 5px;
}

.steps-box {
  background: #e3f2fd;
  border-left: 4px solid #2196f3;
  padding: 20px;
  margin: 20px 0;
  border-radius: 5px;
}

.steps-box h4 {
  color: #1976d2;
  margin-bottom: 15px;
  font-size: 18px;
}

.steps-box ol {
  margin-left: 20px;
  color: #555;
}

.steps-box li {
  padding: 5px 0;
}

.contact-section {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  margin-top: 40px;
  text-align: center;
}

.contact-section h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.contact-section p {
  color: #555;
  margin-bottom: 10px;
}

.contact-link {
  color: #f39c12;
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  text-decoration: underline;
}

.commitment-box {
  background: #e8f5e9;
  border: 2px solid #f39c12;
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
  text-align: center;
}

.commitment-box p {
  margin: 0;
  color: #2e7d32;
  font-weight: 500;
}

@media (max-width: 768px) {
  .container-refund {
    padding: 20px 15px;
  }

  .policy-header h1 {
    font-size: 28px;
  }

  .policy-content {
    padding: 25px 20px;
  }

  .section-title {
    font-size: 19px;
    flex-wrap: wrap;
  }

  .section-content {
    padding-left: 0;
    margin-top: 10px;
  }

  .section-number {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .policy-header h1 {
    font-size: 24px;
  }

  .policy-content {
    padding: 20px 15px;
  }

  .section-title {
    font-size: 17px;
  }

  .intro-text {
    padding: 15px;
  }

  .eligible-box,
  .not-eligible-box,
  .warning-box,
  .steps-box {
    padding: 12px;
  }

  .contact-section {
    padding: 20px 15px;
  }
}
