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

/* Fixed navigation bar spacing */
.page-privacy-policy__hero-section {
  padding-top: 120px; /* Adjust for fixed header height on desktop */
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  background-color: #0d0d0d; /* A dark background for the hero area */
}

.page-privacy-policy__hero-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.page-privacy-policy__hero-image {
  width: 100%;
  margin: 0;
}

.page-privacy-policy__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-privacy-policy__content-area {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #0d0d0d; /* Slightly lighter dark background for content */
  box-sizing: border-box;
}

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

.page-privacy-policy__main-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold brand color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.page-privacy-policy__intro-text {
  font-size: 1.1em;
  margin-bottom: 40px;
  text-align: justify;
  color: #f0f0f0;
}

.page-privacy-policy__section-block {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards/sections */
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #DC143C; /* Deep red brand color */
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(220, 20, 60, 0.5);
  padding-bottom: 10px;
  font-weight: 600;
}

.page-privacy-policy__sub-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold brand color */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-privacy-policy__text-block {
  font-size: 1em;
  margin-bottom: 15px;
  text-align: justify;
  color: #e0e0e0;
}

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

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  color: #e0e0e0;
}

.page-privacy-policy__list-item strong {
  color: #FFD700;
}

.page-privacy-policy__image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-privacy-policy__contact-link {
  color: #DC143C; /* Deep red for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
  color: #FFD700; /* Gold on hover */
}

/* FAQ Section */
.page-privacy-policy__faq-section {
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-top: 50px;
}

.page-privacy-policy__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-privacy-policy__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 215, 0, 0.3);
}

.page-privacy-policy__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700; /* Gold for question text */
  pointer-events: none;
}

.page-privacy-policy__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #DC143C; /* Deep red for toggle icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-toggle {
  color: #FFD700;
  transform: rotate(45deg);
}

.page-privacy-policy__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: #f0f0f0;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
  max-height: 2000px !important; /* Ensure enough space for content */
  padding: 20px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 215, 0, 0.05);
  border-radius: 0 0 8px 8px;
}

.page-privacy-policy__faq-answer p {
  margin: 0;
  color: #e0e0e0;
  text-align: justify;
}

/* Call to Action Section */
.page-privacy-policy__cta-section {
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(220, 20, 60, 0.15));
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-privacy-policy__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-privacy-policy__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #DC143C; /* Deep red button */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #DC143C;
}

.page-privacy-policy__cta-button:hover {
  background-color: #FFD700; /* Gold on hover */
  border-color: #FFD700;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__main-title {
    font-size: 2.8em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.4em;
  }
  .page-privacy-policy__cta-title {
    font-size: 2em;
  }
  .page-privacy-policy__cta-description {
    font-size: 1.1em;
  }
  .page-privacy-policy__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding-top: 100px; /* Adjust for fixed header height on mobile */
  }
  .page-privacy-policy__content-area {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-privacy-policy__main-title {
    font-size: 2.2em;
    margin-bottom: 30px;
  }
  .page-privacy-policy__intro-text {
    font-size: 1em;
  }
  .page-privacy-policy__section-block {
    padding: 20px;
    margin-bottom: 20px;
  }
  .page-privacy-policy__section-title {
    font-size: 1.6em;
    margin-bottom: 15px;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .page-privacy-policy__text-block, .page-privacy-policy__list-item {
    font-size: 0.95em;
  }
  .page-privacy-policy__list {
    margin-left: 20px;
  }
  .page-privacy-policy__image-wrapper {
    margin: 20px auto;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-privacy-policy__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-privacy-policy__faq-question {
    padding: 15px;
  }
  .page-privacy-policy__faq-question h3 {
    font-size: 1em;
  }
  .page-privacy-policy__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  .page-privacy-policy__faq-answer {
    padding: 0 15px;
  }
  .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
    padding: 15px !important;
  }
  .page-privacy-policy__cta-section {
    padding: 30px 15px;
  }
  .page-privacy-policy__cta-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__cta-description {
    font-size: 1em;
  }
  .page-privacy-policy__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
}