/* === General Wrapper === */
.privacy-policy-page-wrapper {
  color: #1a1a1a;
  background-color: #fff;
  line-height: 1.7;
  font-size: 16px;
  padding-bottom: 40px;
}

/* === Main Content Container === */
.privacy-policy-page-wrapper .container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* === Hero Section === */
.hero-about {
  position: relative;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-about::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
}

/* === Content Section === */
.about-mas-b {
  margin: 60px auto;
}

.page-title {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}

.subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  text-align: center;
}

.section {
  margin-bottom: 60px;
}

.section h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #222;
}

.section p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #444;
}

/* === Highlights === */
.highlights .highlight {
  margin-bottom: 30px;
}

.highlights h3 {
  font-size: 18px;
  color: #DCB771;
  margin-bottom: 10px;
}

/* === Trust Section === */
.trust-us {
  background-color: #f9f9f9;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.trust-us ul {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  text-align: left;
  max-width: 600px;
}

.trust-us ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
  color: #111;
}

.trust-us ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #DCB771;
  font-weight: bold;
}

/* === Social Section === */
.social-follow {
  text-align: center;
  margin-top: 60px;
}

.social-follow h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}

.social-icons::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background-color: #e0e0e0;
}

.social-icons a svg {
  width: 40px;
  height: 40px;
  fill: #000;
  transition: transform 0.3s ease, fill 0.3s ease;
}

.social-icons a:hover svg {
  transform: translateY(-5px);
  fill: #DCB771;
}

/* === Responsive === */
@media screen and (max-width: 768px) {
  .hero-about {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
    padding: 0 10px;
  }

  .page-title {
    font-size: 28px;
  }

  .section h2 {
    font-size: 20px;
  }

  .section p {
    font-size: 15px;
  }
}