/* --- Global Styles --- */
body {
  font-family: 'Nunito', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 0;
}

/* --- Navigation --- */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.nav-link {
  font-weight: 600;
  color: #555;
  margin-left: 1rem;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #f97316;
}

/* --- Layout Sections --- */
.page-header {
  background: linear-gradient(135deg, #ffe4e1 0%, #ffffff 100%);
  padding: 120px 0 60px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

/* --- Policy Cards --- */
.policy-card {
  background: #ffffff;
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-5px);
}

.policy-icon {
  font-size: 2.5rem;
  color: #f97316;
  margin-bottom: 20px;
}

.policy-card h2 {
  font-weight: 800;
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: #2d3436;
}

.policy-card h5 {
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #2d3436;
}

.policy-card p,
.policy-card ul,
.policy-card ol {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #636e72;
}

/* --- Footer (Strict Dark & All White Text) --- */
.footer {
  background-color: #2d3436; /* Dark BG */
  color: #ffffff !important; /* Forces all text white */
  padding: 60px 0 20px;
}

.footer-title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer a {
  color: #ffffff !important; /* All links white */
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #f97316 !important; /* Only orange on hover */
}

.footer .text-muted, 
.footer p, 
.footer li {
  color: #ffffff !important; /* Overrides default Bootstrap muted text */
}

/* --- UI Elements --- */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-link:hover {
  background: #f97316;
  color: #fff;
}

.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #f97316;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
  z-index: 99;
}

/* --- Layout Sections --- */
.page-header {
  background: linear-gradient(135deg, #ffe4e1 0%, #ffffff 100%);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.page-header h1 {
  font-size: 2.5rem !important; /* Increased from 20px for better visibility */
  font-weight: 800;
  color: #1e293b; /* Slate-900 */
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}