/* ====== Base Styles ====== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Manrope:wght@400;500;600&display=swap');

* {
   
  font-family: "Manrope", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}/* Policies Section */
.policies-section {
  padding: 80px 40px;
  
  background: #fefefe;
}

.policies-title {
  font-size: 2rem;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.policies-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #003366;
  margin: 10px auto 0;
  border-radius: 2px;
}

.policies-intro {
  text-align: center;
  font-size: 1rem;
  color: #003366;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Tabs Navigation */
.tabs-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn {
  flex: 0 0 auto;
  padding: 8px 16px;
  font-size: 0.9rem;
  background: #f0f0f0;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-btn:hover,
.tab-btn.active {
  background-color: #003366;
  color: #fff;
}

/* Tabs Content Cards */
.tabs-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* List items in tab content */
.tab-content ul {
  list-style: none; /* remove default bullets */
  padding-left: 0;
  margin: 10px 0;
}

.tab-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px; /* space for icon */
  line-height: 1.6;
  color: #003366;
}

/* Add Font Awesome check icon */
.tab-content ul li::before {
  content: "\f00c"; /* check icon */
   
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #003366;
  font-size: 0.95rem;
}


/* Animation Keyframes */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .tab-btn {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  .tab-content h3 {
    font-size: 1.1rem;
  }
  .tab-content p,
  .tab-content ul li {
    font-size: 0.85rem;
  }
}
