
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
}

/* HERO */
.page-hero {
  
 background: url('../images/hero-images-desktop/hero-image-privacy.webp') center/cover no-repeat;
  position: relative;
  width: 100%;
  height: 600px; /* desktop height */
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay h1 {
  color: #fff;
  font-size: 40px;
  letter-spacing: 2px;
}
.privacy-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  color: #393939;
  font-size: 17px;
  line-height: 1.6;
}
.privacy-intro::after {
  content: "";
  display: block;
  width: 320px;
  height: 1px;
  margin: 20px auto 0;
  background: linear-gradient(to right, transparent, #aaa, transparent);
}
/* CONTENT */
.content-section {
  padding: 80px 20px;
}

.content-container {
  max-width: 800px;
  margin: auto;
}

/* privacy ITEMS */
.privacy-item {
  margin-bottom: 35px;
}

.privacy-item h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

.privacy-item p {
  color: #555;
  line-height: 1.7;
  font-size: 14px;
}
/* wrapper */
.privacy-wrapper {
  position: relative;
  padding-left: 40px;
}

/* static vertical line */
.privacy-line {
  position: absolute;
  left: 10px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #ffffff;
}

/* moving progress line */
.privacy-progress {
  position: absolute;
  left: 10px;
  top: 0;
  width: 2px;
  height: 0;
  background: #fdfdfd;
  transition: height 0.2s ease-out;
}

/* privacy spacing */
.privacy-item {
  margin-bottom: 50px;
  position: relative;
}

/* small dot for each item */
.privacy-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  transition: 0.3s;
}

/* active item */
.privacy-item.active::before {
  background: #8e8e8e;
  transform: scale(1.3);
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .page-hero {
    height: 550px; 
    
    background-image: url('../images/hero-images-mobile/hero-image-privacy-mobile.webp');
  }

  .hero-overlay h1 {
    font-size: 28px;
  }
  .hero-overlay h1 {
    font-size: 28px;
    text-align: center;
  }
}

