@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

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

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

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

.policy-container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

/* --- Header Section (Inside Policy) --- */
.policy-header {
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 40px;
}

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

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

/* --- Content Sections --- */
.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 20px;
  border-left: 5px solid var(--primary-color);
  padding-left: 15px;
  line-height: 1.3;
}

.policy-section h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.policy-section h4 {
  font-size: 1.1rem;
  color: #444;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.policy-section p {
  margin-bottom: 15px;
  color: var(--text-light);
  text-align: justify;
}

.policy-container ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.policy-container ul li {
  margin-bottom: 10px;
  color: var(--text-light);
  list-style-type: disc;
}

.policy-container ul li strong {
  color: var(--text-dark);
}

.definitions-list li {
  margin-bottom: 15px;
  padding-left: 5px;
}

/* --- Links --- */
.policy-section a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.policy-section a:hover {
  text-decoration: underline;
  color: #bf4300;
}

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

.contact-section h2 {
  border-left: none;
  padding-left: 0;
  margin-top: 0;
}

.contact-details p {
  margin: 5px 0;
  font-size: 1.05rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .policy-header h1 {
    font-size: 2rem;
  }

  .policy-section h2 {
    font-size: 1.4rem;
  }
}
