.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Adhere to 10px top padding for hero section */
  margin-bottom: 40px;
  overflow: hidden;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: 600px; /* Fixed height for desktop hero */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0; /* Placeholder background */
}

.page-privacy-policy__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover for desktop, will change to contain for mobile */
  display: block;
}

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

.page-privacy-policy__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* clamp for H1, no fixed large size */
  color: #1F2D3D; /* Text Main */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-privacy-policy__description {
  font-size: 1.1rem;
  color: #1F2D3D; /* Text Main */
  max-width: 700px;
  margin: 0 auto 30px;
}

.page-privacy-policy__content-section {
  padding: 40px 0;
  background: #F4F7FB; /* Background color */
}

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

.page-privacy-policy__section-title {
  font-size: 2.2rem;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.page-privacy-policy__sub-title {
  font-size: 1.6rem;
  color: #2F6BFF; /* Primary Color */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-privacy-policy__text-block p {
  margin-bottom: 15px;
}

.page-privacy-policy__text-block ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 0;
}

.page-privacy-policy__text-block li {
  margin-bottom: 8px;
  color: #1F2D3D; /* Text Main */
}

.page-privacy-policy__text-block strong {
  font-weight: 700;
}

.page-privacy-policy__text-block a {
  color: #2F6BFF; /* Primary Color for links */
  text-decoration: underline;
}

.page-privacy-policy__image-wrapper {
  margin: 30px auto;
  text-align: center;
  max-width: 800px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* Ensure images fit within their wrapper */
}

/* FAQ Section */
details.page-privacy-policy__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #D6E2FF; /* Border Color */
  overflow: hidden;
  background: #FFFFFF; /* Card BG */
}

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

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: #F4F7FB; /* Background color on hover */
}

.page-privacy-policy__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #1F2D3D; /* Text Main */
}

.page-privacy-policy__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #2F6BFF; /* Primary Color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
  padding: 0 20px 20px;
  background: #F4F7FB; /* Background color */
  border-radius: 0 0 5px 5px;
  color: #1F2D3D; /* Text Main */
}

/* CTA Section */
.page-privacy-policy__cta-section {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient for CTA background */
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
}

.page-privacy-policy__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-privacy-policy__cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-privacy-policy__cta-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.8;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-privacy-policy__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* General Image styles for content area */
.page-privacy-policy img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-section {
    margin-bottom: 30px;
  }

  .page-privacy-policy__hero-image {
    height: 500px;
  }
}