/* ==== Privacy Policy - Modern About-Us Style ==== */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: #1e293b;
  background-color: #f9fafb;
  line-height: 1.8;
}
h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: #111827; margin-bottom: 1rem; }
p, li { color: #475569; font-size: 1.125rem; margin-bottom: 1.25rem; }

/* HERO SECTION */
.hero-banner-privacy {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../../uploads/privacy-policy.webp');
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  z-index: 1; /* background layer */
}

.hero-text-privacy {
  font-size: 4rem;
  color: #1f2937; /* dark text works on white image */
  margin: 0;
  line-height: 1.1;
  z-index: 2; /* text above background */
}

/* MAIN CONTAINER */
.privacy-main {
  max-width: 1100px;
  margin: 1rem auto;
  padding: 0 1rem;
}

/* SECTIONS */
.privacy-section {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1rem;
  margin-bottom: 0.3rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.privacy-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* HEADINGS */
.privacy-headline {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.privacy-subheadline {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2563eb; /* subtle accent color */
  margin-bottom: 0.75rem;
}

/* PARAGRAPHS */
.privacy-paragraph { font-size: 1.125rem; line-height: 1.9; }

/* LISTS */
.privacy-section ul { padding-left: 1.75rem; margin-bottom: 1.5rem; }
.privacy-section li { margin-bottom: 0.75rem; }

/* DIVIDER */
.privacy-divider {
  width: 60px;
  height: 3px;
  background-color: #2563eb;
  margin: 2rem auto;
  border-radius: 2px;
}

/* CTA SECTION */
.privacy-cta-section {
  text-align: center;
  margin: 4rem 0;
}
.privacy-cta-container {
  max-width: 800px;
  margin: auto;
  padding: 3rem 2rem;
  background-color: #2563eb;
  color: #fff;
  border-radius: 1rem;
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}
.privacy-cta-headline {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.privacy-cta-paragraph { font-size: 1.125rem; line-height: 1.8; margin-bottom: 1.5rem; }
.privacy-cta-button {
  display: inline-block;
  background-color: #fbbf24;
  color: #111827;
  font-weight: 700;
  padding: 0.75rem 2.25rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.privacy-cta-button:hover {
  background-color: #f59e0b;
  transform: scale(1.05);
}

/* FADE-IN ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1023px) {
  .hero-banner-privacy { 
      height: 600px; 
      background-image: url('../../uploads/privacy-policy-banner-mobile.webp');
  }
  .hero-text-privacy { font-size: 3rem; }
  .privacy-headline { font-size: 1.9rem; }
  .privacy-subheadline { font-size: 1.3rem; }
  .privacy-paragraph { font-size: 1rem; }
  .privacy-cta-headline { font-size: 1.85rem; }
  .privacy-cta-paragraph { font-size: 1rem; }
  .privacy-cta-container { padding: 2rem 1.5rem; }
}
/* CTA SECTION - Centered Modern Style */
.cta-section-styles {
  margin: 4rem 0;
  display: flex;
  justify-content: center;
}

.cta-container-styles {
  max-width: 800px;
  width: 100%;
  padding: 3rem 2rem;
  background-color: #2c2c2c; /* Blue background */
  color: #fff;
  border-radius: 1rem;
  text-align: center; /* Important: center text */
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.headline-styles-cta {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.paragraph-styles-cta {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 48rem;
  margin: 0 auto 1.5rem; 
}

.cta-button-styles {
  display: inline-block;
  background-color: #fbbf24;
  color: #111827;
  font-weight: 700;
  padding: 0.75rem 2.25rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button-styles:hover {
  background-color: #f59e0b;
  transform: scale(1.05);
}

/* Fade-in animation for CTA */
.cta-section-styles.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.cta-section-styles.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1023px) {
  .cta-container-styles { padding: 2rem 1.5rem; }
  .headline-styles-cta { font-size: 1.85rem; }
  .paragraph-styles-cta { font-size: 1rem; }
}
