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

/* Hero Section */
.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #f5f5f5; /* Light background for hero section */
  border-bottom: 5px solid #26A9E0; /* Brand color accent */
}

.page-privacy-policy__hero-container {
  position: relative;
  max-width: 1200px;
  width: 100%; /* Ensure it takes full width for flex alignment */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-privacy-policy__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 1000px; /* Limit image width slightly for better composition */
}

.page-privacy-policy__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
  padding: 0 15px;
}

.page-privacy-policy__main-title {
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
  color: #26A9E0; /* Brand color for main title */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-privacy-policy__description {
  font-size: clamp(16px, 2vw, 20px);
  color: #555555;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #26A9E0; /* Brand primary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:hover {
  background: #1e87c0; /* Darker shade of brand color */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-button--bottom {
  margin-top: 40px;
  background: #EA7C07; /* Login color for bottom CTA */
}

.page-privacy-policy__cta-button--bottom:hover {
  background: #c76706; /* Darker shade */
}

/* Content Area */
.page-privacy-policy__content-area {
  padding: 50px 0;
  background-color: #ffffff;
}

.page-privacy-policy__content-area:nth-of-type(even) {
  background-color: #f9f9f9;
}

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

.page-privacy-policy__section-title {
  font-size: 32px;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 35px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.page-privacy-policy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #EA7C07; /* Accent color */
  border-radius: 2px;
}

.page-privacy-policy p {
  margin-bottom: 20px;
  font-size: 17px;
  color: #444444;
}

.page-privacy-policy__feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
  justify-content: center;
}

.page-privacy-policy__feature-item {
  flex: 1 1 calc(33% - 20px);
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 280px; /* Ensure minimum width for items */
}

.page-privacy-policy__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-privacy-policy__feature-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
  object-fit: cover;
}

.page-privacy-policy__feature-item h3 {
  font-size: 22px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-privacy-policy__feature-item p {
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
}

.page-privacy-policy__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-privacy-policy__list li {
  margin-bottom: 10px;
  font-size: 17px;
  color: #444444;
}

.page-privacy-policy__sub-list {
  list-style: circle;
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.page-privacy-policy__sub-list li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #555555;
}

.page-privacy-policy__last-updated {
  text-align: right;
  font-style: italic;
  color: #777777;
  font-size: 15px;
  margin-top: 30px;
}

.page-privacy-policy__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-privacy-policy__contact-list li {
  margin-bottom: 10px;
  font-size: 17px;
  color: #444444;
  display: flex;
  align-items: center;
}

.page-privacy-policy__contact-list li::before {
  content: '📞'; /* Example icon */
  margin-right: 10px;
  color: #26A9E0;
  font-size: 20px;
}
.page-privacy-policy__contact-list li:nth-child(2)::before {
  content: '📧';
}
.page-privacy-policy__contact-list li:nth-child(3)::before {
  content: '💬';
}
.page-privacy-policy__contact-list li:nth-child(4)::before {
  content: '📍';
}

/* FAQ Section */
.page-privacy-policy__faq {
  background-color: #f0f8ff; /* Light blue background for FAQ */
}

.page-privacy-policy__faq-list {
  margin-top: 30px;
}

details.page-privacy-policy__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 18px;
  font-weight: 600;
  color: #333333;
}

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

details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question:hover {
  background: #e8f5ff; /* Lighter blue on hover */
  color: #26A9E0;
}

.page-privacy-policy__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}

details.page-privacy-policy__faq-item[open] summary.page-privacy-policy__faq-question .page-privacy-policy__faq-qtext {
  color: #26A9E0; /* Brand color when open */
}


.page-privacy-policy__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #26A9E0; /* Brand color for toggle */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

details.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
  transform: rotate(45deg); /* Rotate plus to cross */
  color: #EA7C07; /* Accent color when open */
}

details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
  padding: 0 25px 25px;
  background: #f9f9f9;
  border-radius: 0 0 10px 10px;
  color: #555555;
  font-size: 16px;
  line-height: 1.7;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-image {
    margin-bottom: 20px;
  }
  .page-privacy-policy__hero-image img {
    border-radius: 8px;
  }
  .page-privacy-policy__main-title {
    font-size: clamp(24px, 5vw, 40px);
  }
  .page-privacy-policy__description {
    font-size: clamp(15px, 2.5vw, 18px);
  }
  .page-privacy-policy__section-title {
    font-size: 28px;
  }
  .page-privacy-policy__feature-item {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-privacy-policy__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-privacy-policy__hero-image img {
    border-radius: 4px;
    min-width: 200px !important;
    min-height: 200px !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-privacy-policy__hero-content {
    padding: 0;
  }
  .page-privacy-policy__main-title {
    font-size: clamp(22px, 6vw, 36px);
    margin-bottom: 10px;
  }
  .page-privacy-policy__description {
    font-size: clamp(14px, 3vw, 16px);
    margin-bottom: 20px;
  }
  .page-privacy-policy__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-top: 15px;
  }
  .page-privacy-policy__cta-button--bottom {
    margin-top: 30px;
  }
  .page-privacy-policy__content-area {
    padding: 30px 0;
  }
  .page-privacy-policy__container {
    padding: 0 15px;
  }
  .page-privacy-policy__section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .page-privacy-policy p,
  .page-privacy-policy__list li,
  .page-privacy-policy__sub-list li {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .page-privacy-policy__feature-list {
    flex-direction: column;
    gap: 20px;
  }
  .page-privacy-policy__feature-item {
    flex: 1 1 100%;
    padding: 20px;
  }
  .page-privacy-policy__feature-item img {
    min-width: 200px !important;
    min-height: 200px !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-privacy-policy__feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .page-privacy-policy__faq-item {
    border-radius: 8px;
  }
  details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-privacy-policy__faq-qtext {
    font-size: 16px;
  }
  .page-privacy-policy__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  /* Image responsive rules */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-privacy-policy__section,
  .page-privacy-policy__card,
  .page-privacy-policy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-privacy-policy__cta-buttons,
  .page-privacy-policy__button-group,
  .page-privacy-policy__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-privacy-policy__cta-buttons {
    flex-direction: column;
  }
}