body {
  background-color: #fff;
  margin: 0;
  padding: 40px 10px;
  font-family: 'Ubuntu', sans-serif;
}

.policy-card {
  max-width: 900px;
  margin: auto;
  padding: 30px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(231, 154, 154, 0.3);
  border: 3px solid #d72638;
  color: #000;
}
.badge-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.badge {
    
  text-align: center;
  margin-bottom: 30px;
  background-color: #d72638;
  color: white;
  padding: 12px 30px;
  font-size: 20px;
  border-radius: 50px;
  letter-spacing: 1px;
  display: inline-block;
}

.policy-card h1 {
  color: #000;
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.date {
  text-align: center;
  font-size: 14px;
  color: #ccc;
}

.policy-card h2 {
  color: #000;
  margin-top: 30px;
  font-size: 22px;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
}

.policy-card p,
.policy-card ul {
  font-size: 16px;
  line-height: 1.7;
  color: #181818;
}

.policy-card ul {
  padding-left: 25px;
  margin-top: 10px;
}

.policy-card li {
  margin-bottom: 10px;
}

.policy-card strong {
  color: #000;
}

.policy-card a {
  color: #c9302c;
  font-weight: bold;
  text-decoration: none;
}

.policy-card a:hover {
  text-decoration: underline;
  color: #000;
}
.back-button-container {
  text-align: center;
  margin-top: 20px;
}

.back-button {
  display: inline-block;
  background-color: #d72638;
  color: #000;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-button:hover {
  background-color: #000;
  color: #c9302c;
  transform: scale(1.05);
}

/* Contact link styles */
.contact .contact-link{
  display: block;
  margin: 0px 0;
  color: #000;
  text-decoration: none;
  
  
}

.contact .contact-link:hover {
  color: #c9302c;
  text-decoration: underline;
}

