* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, #d62416 0%, #d62416 100%);
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
}

.logo i {
  margin-right: 10px;
  font-size: 28px;
}

.back-button {
  background: white;
  color: #d62416;
  border: none;
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.back-button:hover {
  background: #f8f8f8;
  transform: translateX(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.back-button i {
  margin-right: 5px;
}

/* Main Content Styles */
.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.policy-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 40px;
}

.card-header {
  background: linear-gradient(135deg, #d62416 0%, #d62416 100%);
  color: white;
  padding: 25px 30px;
}

.card-header h1 {
  font-size: 28px;
  margin-bottom: 5px;
}

.card-header p {
  opacity: 0.9;
}

.card-content {
  padding: 35px;
}

.section {
  margin-bottom: 40px;
}

.section:last-child {
  margin-bottom: 0;
}

.section h2 {
  color: #d62416;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ffebde;
  font-size: 24px;
}

.section h3 {
  margin: 25px 0 15px;
  color: #444;
  font-size: 20px;
}

.section p,
.section ul {
  margin-bottom: 15px;
  color: #555;
}

.section ul {
  padding-left: 30px;
}

.section li {
  margin-bottom: 10px;
  position: relative;
}

.section li:before {
  content: "•";
  color: #d62416;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.highlight {
  background: #fff9f5;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #d62416;
  margin: 20px 0;
}

/* Footer Styles */
footer {
  background: #1a1a1a;
  color: #bbb;
  padding: 40px 0 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #d62416;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333;
  color: white;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: #d62416;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  margin-top: 20px;
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .logo {
    margin-bottom: 10px;
  }

  .card-content {
    padding: 25px;
  }

  .footer-section {
    flex: 100%;
  }
}

.back-button-container {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px
}

.back-button {
    display: inline-block;
    background-color: #d62416;
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #000000;
    color: #d62416;
}

