/* ================================
   Background Image Container
================================== */
.background-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background-image: url(../images/team-brainstorming-session.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 60vh;
}

/* ================================
   Hero Banner Section
================================== */
.hero-banner {
  position: relative;
  width: 100%;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background: none;
}

/* Hero Overlay */
.hero-overlay {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
  z-index: 10;
}

/* Text Styling in Hero */
.breadcrumb {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
  opacity: 0.8;
}

.page-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: capitalize;
  margin: 0;
}

/* Spacing After Hero */
section.hero-banner + .about-us {
  margin-top: 20px;
}

.animate-left,
.animate-right {
  opacity: 0;
}

.animate-now.animate-left {
  animation: slideInLeft 1s ease-out forwards;
}

.animate-now.animate-right {
  animation: slideInRight 1s ease-out forwards;
}


/* ================================
   Privacy Policy Content Section
================================== */
.privacy-policy {
  font-family: Arial, sans-serif;
  padding: 50px 20px;
}

.privacy-policy .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 8px;
}

/* Headings */
.privacy-policy h1 {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #D02B2F;
  margin-bottom: 20px;
}

.privacy-policy h2 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-top: 30px;
  padding-bottom: 10px;
}

/* Paragraphs */
.privacy-policy p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
  padding-left: 30px;
}

/* Lists */
.privacy-policy ul {
  list-style-type: disc;
  padding-left: 40px;
  margin-bottom: 20px;
}

.privacy-policy ul li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #444;
}

/* Links */
.privacy-policy a {
  color: #D02B2F;
  text-decoration: none;
  font-weight: bold;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

/* ================================
   Responsive Media Queries
================================== */

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-left {
  animation: slideInLeft 1s ease-out forwards;
}

.animate-right {
  animation: slideInRight 1s ease-out forwards;
}


@media (max-width: 768px) {
  /* Hero Banner */
  .hero-banner {
    height: 200px;
  }

  .breadcrumb {
    font-size: 0.9rem;
  }

  .page-title {
    font-size: 1.8rem;
  }

  /* Privacy Policy Text */
  .privacy-policy {
    padding: 30px 15px;
  }

  .privacy-policy .container {
    padding: 20px;
  }

  .privacy-policy h1 {
    font-size: 28px;
  }

  .privacy-policy h2 {
    font-size: 20px;
  }

  .privacy-policy p,
  .privacy-policy ul li {
    font-size: 15px;
    padding-left: 20px;
  }

  .privacy-policy ul {
    padding-left: 30px;
  }
}

@media (max-width: 480px) {
  /* Hero Banner */
  .page-title {
    font-size: 1.5rem;
  }

  .breadcrumb {
    font-size: 0.8rem;
  }

  /* Privacy Policy Text */
  .privacy-policy h1 {
    font-size: 24px;
  }

  .privacy-policy h2 {
    font-size: 18px;
  }

  .privacy-policy p,
  .privacy-policy ul li {
    font-size: 14px;
    padding-left: 15px;
  }

  .privacy-policy ul {
    padding-left: 25px;
  }
}