/* style/privacy-policy.css */
.page-privacy-policy {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  padding: 60px 20px;
  padding-top: 10px;
  text-align: center;
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.page-privacy-policy__hero-image {
  width: 100%;
  max-width: 1920px; /* Ensure it doesn't stretch too wide */
  overflow: hidden;
}

.page-privacy-policy__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(87, 227, 141, 0.3); /* Glow effect */
}

.page-privacy-policy__hero-content {
  max-width: 900px;
  margin-top: 20px;
}

.page-privacy-policy__main-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.page-privacy-policy__description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-privacy-policy__button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(87, 227, 141, 0.4); /* Glow effect on hover */
}

.page-privacy-policy__content-area {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-privacy-policy__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.page-privacy-policy__section-title {
  font-size: 1.8rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-privacy-policy__text {
  font-size: 1rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-privacy-policy__text a {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__text a:hover {
  text-decoration: underline;
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 25px;
  color: #F2FFF6; /* Text Main */
}

.page-privacy-policy__list-item {
  margin-bottom: 8px;
  font-size: 1rem;
}

.page-privacy-policy__list-item strong {
  color: #F2C14E; /* Gold */
}

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 25px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.2);
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

/* Ensure content images are not too small */
.page-privacy-policy__content-area img {
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .page-privacy-policy__description {
    font-size: 1rem;
  }

  .page-privacy-policy__content-area {
    padding: 20px 15px;
  }

  .page-privacy-policy__section-title {
    font-size: 1.5rem;
  }

  .page-privacy-policy__text, .page-privacy-policy__list-item {
    font-size: 0.95rem;
  }

  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
  }

  .page-privacy-policy__content-area img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero-section {
    padding: 30px 10px;
    padding-top: 10px;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(1.2rem, 8vw, 1.6rem);
  }

  .page-privacy-policy__button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .page-privacy-policy__content-area {
    padding: 15px 10px;
  }

  .page-privacy-policy__section-title {
    font-size: 1.3rem;
  }

  .page-privacy-policy__list {
    margin-left: 20px;
  }
}