/* refund.css */

/* Container styling */
.container {
  max-width: 900px;
  margin: 50px auto;
  padding: 25px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
  line-height: 1.7;
  color: #333333;
}

/* Page headings */
h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1a73e8;
}

h2 {
  font-size: 24px;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #0b5394;
}

/* Paragraph styling */
p {
  font-size: 16px;
  margin-bottom: 15px;
}

/* Links */
a {
  color: #1a73e8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Feedback button */
.feedback-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #1a73e8;
  color: #ffffff;
  border-radius: 50%;
  padding: 15px 18px;
  font-size: 24px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.feedback-btn:hover {
  background-color: #0b5394;
  transform: scale(1.1);
}
