.privacy-hero-section {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: none;
  overflow: hidden;
}
.privacy-hero-section .privacy-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
    background: url('../images/Enginer6.jpg') center/cover no-repeat;
  opacity: 1;
  z-index: 1;
}
.privacy-hero-section h1,
.privacy-hero-section p {
  position: relative;
  z-index: 2;
}

.privacy-content-section {
  background: #f8f9fa;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.privacy-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.08);
  padding: 2.5rem 2rem;
  transition: box-shadow 0.3s;
}
.privacy-card:hover {
  box-shadow: 0 12px 48px 0 rgba(128,0,32,0.12);
}
.privacy-card h2 {
  color: #800020;
  font-weight: 700;
}
.privacy-card h4 {
  color: #003366;
  font-weight: 600;
}
.privacy-card ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.privacy-card li {
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
}
.privacy-card a {
  color: #800020;
  text-decoration: underline;
}
.privacy-card a:hover {
  color: #FFD700;
}

/* Info Cards Section */
.privacy-info-cards-section {
  background: #fff;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.info-card {
  background: #f8f9fa;
  border-radius: 1.25rem;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
  min-height: 220px;
  position: relative;
}
.info-card:hover {
  box-shadow: 0 8px 32px 0 rgba(128,0,32,0.13);
  transform: translateY(-6px) scale(1.03);
}
.info-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem auto;
  background: linear-gradient(135deg, #80002022 60%, #FFD70022 100%);
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
}
.info-card h5 {
  color: #800020;
  font-weight: 700;
}
.info-card p {
  color: #333;
  font-size: 1.08rem;
}

/* FAQ/Accordion Section */
.terms-faq-section .section-title {
  color: #800020;
  font-weight: 700;
}
.terms-faq-section .accordion-button {
  font-weight: 600;
  color: #003366;
  background: #fff;
  border: none;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
}
.terms-faq-section .accordion-button:not(.collapsed) {
  background: #FFD70022;
  color: #800020;
}
.terms-faq-section .accordion-item {
  border: none;
  border-radius: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
}
.terms-faq-section .accordion-body {
  font-size: 1.08rem;
  color: #333;
}

/* CTA Section */
.terms-cta-section {
  background: linear-gradient(90deg, #003366 60%, #800020 100%);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.terms-cta-section h2 {
  color: white;
  font-weight: 700;
}
.terms-cta-section p {
  color: #fff;
  font-size: 1.15rem;
}
.terms-cta-section .btn-warning {
  background: #FFD700;
  color: #800020;
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
}
.terms-cta-section .btn-warning:hover {
  background: #800020;
  color: #FFD700;
}

@media (max-width: 767px) {
  .privacy-card {
    padding: 1.2rem 0.7rem;
  }
  .privacy-hero-section {
    min-height: 180px;
    padding: 2rem 0 1rem 0;
  }
  .privacy-hero-section h1 {
    font-size: 2rem;
  }
  .info-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    min-height: 180px;
  }
  .privacy-info-cards-section {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .terms-cta-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .terms-faq-section .accordion-item {
    margin-bottom: 0.7rem;
  }
}

/* Loader overlay (reuse from index.css if needed) */
.loader-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(255,255,255,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modern-loader {
  display: flex;
  gap: 0.5rem;
}
.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #800020;
  animation: bounce 1.2s infinite alternate;
}
.dot2 { background: #FFD700; animation-delay: 0.2s; }
.dot3 { background: #003366; animation-delay: 0.4s; }
@keyframes bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-18px); }
}
