/* style/privacy-policy.css */
.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #FFFFFF;
}

.page-privacy-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-privacy-policy__hero-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: 10px; /* Small top padding if body already has header offset */
  padding-bottom: 40px;
  background-color: #017439; /* Brand primary color for hero background */
  color: #FFFFFF;
}

.page-privacy-policy__hero-image-container {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Desktop: cover to fill */
}

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

.page-privacy-policy__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-privacy-policy__intro-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-privacy-policy__btn-primary {
  display: inline-block;
  background-color: #C30808; /* Register color */
  color: #FFFF00; /* Register font color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  border: none;
}

.page-privacy-policy__btn-primary:hover {
  background-color: #a00606;
}

.page-privacy-policy__content-area {
  padding: 40px 0;
  background-color: #FFFFFF;
}

.page-privacy-policy__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #017439; /* Brand primary color */
  margin-bottom: 25px;
  text-align: center;
  padding-top: 20px;
}

.page-privacy-policy__sub-section-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__paragraph {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.7;
  text-align: justify;
}

.page-privacy-policy__paragraph strong {
  color: #017439;
}

.page-privacy-policy__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-privacy-policy__list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.page-privacy-policy__list-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  margin-right: 20px;
  object-fit: contain;
  border-radius: 50%;
  background-color: #e0f2f1;
  padding: 10px;
}

.page-privacy-policy__list-content {
  flex: 1;
}

.page-privacy-policy__list-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #017439;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-privacy-policy__list-item-simple {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.page-privacy-policy__list-item-simple::before {
  content: '•';
  color: #017439;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-privacy-policy__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-privacy-policy__feature-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-privacy-policy__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.page-privacy-policy__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-privacy-policy__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #017439;
  margin-bottom: 15px;
}

.page-privacy-policy__security-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-privacy-policy__security-card {
  background-color: #f0fdfa;
  border: 1px solid #c8e6e4;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-privacy-policy__security-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-privacy-policy__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #017439;
  margin-bottom: 10px;
}

.page-privacy-policy__numbered-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin: 20px 0;
}

.page-privacy-policy__list-item-numbered {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.7;
}

.page-privacy-policy__list-bullet {
  list-style-type: disc;
  padding-left: 25px;
  margin: 20px 0;
}

.page-privacy-policy__list-item-bullet {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.7;
}

.page-privacy-policy__contact-info {
  margin-top: 30px;
  text-align: center;
}

.page-privacy-policy__contact-info p {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.page-privacy-policy__contact-link {
  color: #017439;
  text-decoration: underline;
  font-weight: bold;
}

.page-privacy-policy__contact-link:hover {
  color: #004d2c;
}

.page-privacy-policy__btn-secondary {
  display: inline-block;
  background-color: #FFFFFF;
  color: #017439;
  padding: 15px 30px;
  border: 2px solid #017439;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
}

.page-privacy-policy__btn-secondary:hover {
  background-color: #017439;
  color: #FFFFFF;
}

.page-privacy-policy__faq-section {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.page-privacy-policy__faq-list {
  max-width: 900px;
  margin: 30px auto 0 auto;
}

.page-privacy-policy__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  list-style: none; /* For <details> tag */
}

.page-privacy-policy__faq-question::-webkit-details-marker {
  display: none;
}

.page-privacy-policy__faq-qtext {
  flex-grow: 1;
  text-align: left;
}

.page-privacy-policy__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #017439;
  transition: transform 0.3s ease;
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
  transform: rotate(45deg);
}

.page-privacy-policy__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1rem;
  color: #555555;
  text-align: justify;
}

.page-privacy-policy__faq-answer p {
  margin-bottom: 0;
}

/* --- Responsive Styles --- */
/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .page-privacy-policy__container {
    padding: 15px;
  }

  .page-privacy-policy__hero-section {
    padding-bottom: 30px;
  }

  .page-privacy-policy__hero-image-container {
    max-height: 400px; /* Adjust max height for mobile hero */
  }

  .page-privacy-policy__hero-image {
    object-fit: contain !important; /* Mobile: contain to prevent cropping important parts */
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-privacy-policy__intro-text {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  /* Buttons and button containers */
  .page-privacy-policy__btn-primary,
  .page-privacy-policy__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-privacy-policy__contact-info a.page-privacy-policy__contact-link {
    display: block;
    margin-bottom: 10px;
  }

  .page-privacy-policy__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-top: 15px;
  }

  .page-privacy-policy__sub-section-title {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-privacy-policy__paragraph {
    font-size: 0.95rem;
  }

  /* General images and containers */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  .page-privacy-policy__content-area,
  .page-privacy-policy__faq-section {
    padding: 30px 0;
  }

  .page-privacy-policy__list-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
  }

  .page-privacy-policy__list-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-privacy-policy__list-title {
    font-size: 1.2rem;
  }

  .page-privacy-policy__feature-grid,
  .page-privacy-policy__security-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-privacy-policy__feature-image,
  .page-privacy-policy__security-image {
    height: auto;
  }

  .page-privacy-policy__contact-info p {
    font-size: 1rem;
  }

  .page-privacy-policy__faq-question {
    font-size: 1.05rem;
    padding: 15px 20px;
  }

  .page-privacy-policy__faq-answer {
    padding: 10px 20px 15px 20px;
    font-size: 0.95rem;
  }
}

/* Additional mobile specific padding for main containers */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section,
  .page-privacy-policy__content-area .page-privacy-policy__container,
  .page-privacy-policy__faq-section .page-privacy-policy__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}