/* Import Font (if not already handled in header.css) */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: #e65100; /* Saffron/Terra Cotta */
  --text-dark: #333;
  --text-light: #555;
  --bg-gray: #f9f9f9;
  --border-color: #eee;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: var(--text-dark);
}

.main-content {
  min-height: 80vh;
  padding: 60px 0;
}

/* Container Styling */
.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Section */
.policy-header {
  text-align: center;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 30px;
}

.policy-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.last-updated {
  color: #888;
  font-style: italic;
  font-size: 0.9rem;
}

/* Section Styling */
.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
}

/* Small accent line next to headings */
.policy-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.policy-section p {
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 15px;
}

/* Alert Box for Non-Refundable Notice */
.alert-box {
  background-color: #fff3e0; /* Light Orange/Saffron tint */
  border-left: 4px solid var(--primary-color);
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 4px;
  color: #d84315;
}

/* List Styling */
.policy-list {
  list-style: none;
  padding: 0;
}

.policy-list li {
  background: var(--bg-gray);
  margin-bottom: 12px;
  padding: 15px;
  border-radius: 6px;
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
}

.policy-list li:hover {
  border-left-color: var(--primary-color);
}

.policy-list strong {
  color: var(--text-dark);
  margin-right: 5px;
}

/* Contact Section Styling */
.contact-section {
  background-color: var(--bg-gray);
  padding: 30px;
  border-radius: 8px;
  margin-top: 50px;
}

.contact-link {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--text-dark);
}

.contact-item a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--primary-color);
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  .policy-header h1 {
    font-size: 2rem;
  }

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