/* style/privacy-policy.css */

/* General page styles */
.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-bottom: 60px; /* Ensure space above footer */
}

/* Hero Section */
.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Default to column for mobile first, desktop will be row */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  background-color: #0A0A0A; /* Background */
  overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-top: 30px; /* Space between content and image */
  order: 2; /* Image below content on mobile */
}

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

.page-privacy-policy__hero-content {
  order: 1; /* Content above image on mobile */
  max-width: 800px;
  margin-bottom: 40px;
  padding: 0 15px;
}

.page-privacy-policy__main-title {
  font-size: clamp(2em, 4vw, 3em); /* Responsive font size */
  font-weight: bold;
  color: #FFD36B; /* Glow color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-privacy-policy__hero-description {
  font-size: 1.1em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
}

/* CTA Buttons */
.page-privacy-policy__cta-buttons {
  display: flex;
  flex-direction: column; /* Stack buttons on mobile */
  gap: 15px;
  margin-top: 30px;
  width: 100%;
  max-width: 400px; /* Limit button group width */
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  width: 100%;
}

.page-privacy-policy__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for contrast on bright button */
  border: none;
}

.page-privacy-policy__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-privacy-policy__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Glow color */
  border: 2px solid #FFD36B; /* Glow color border */
}

.page-privacy-policy__btn-secondary:hover {
  background: rgba(255, 211, 107, 0.1); /* Subtle hover effect */
  transform: translateY(-2px);
}

/* Content Area */
.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-privacy-policy__dark-section {
  background-color: #111111; /* Card BG */
  padding: 60px 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #F2C14E; /* Main color */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
}

.page-privacy-policy__sub-title {
  font-size: 1.6em;
  color: #FFD36B; /* Glow color */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-privacy-policy__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-privacy-policy__text-block a {
  color: #F2C14E; /* Main color for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__text-block a:hover {
  color: #FFD36B; /* Glow color on hover */
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-privacy-policy__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-privacy-policy__list li strong {
  color: #FFD36B; /* Glow color for strong text in lists */
}

.page-privacy-policy__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  max-width: 800px;
  border-radius: 8px;
  object-fit: cover;
}

/* FAQ Section */
.page-privacy-policy__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-privacy-policy__faq-item.active {
  border-color: #F2C14E; /* Main color when active */
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #111111; /* Card BG */
  color: #FFD36B; /* Glow color for questions */
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1); /* Subtle hover with main color */
}

.page-privacy-policy__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: 1.1em; /* Ensure h3 inside is not too large */
}

.page-privacy-policy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2C14E; /* Main color for toggle icon */
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-toggle {
  transform: rotate(45deg); /* Rotate for 'x' or '-' effect */
}

.page-privacy-policy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px; /* Initial padding 0 */
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6; /* Text Main */
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to reveal content */
  padding: 15px 20px 20px; /* Adjusted padding when active */
}

.page-privacy-policy__faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* Contact Section */
.page-privacy-policy__contact-section {
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 60px 20px;
  text-align: center;
  background-color: #111111; /* Card BG */
  border-radius: 10px;
}

.page-privacy-policy__contact-info {
  font-style: normal;
  margin-top: 30px;
  color: #FFF6D6; /* Text Main */
}

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

.page-privacy-policy__contact-info a {
  color: #F2C14E; /* Main color for contact links */
  text-decoration: underline;
}

.page-privacy-policy__contact-info a:hover {
  color: #FFD36B; /* Glow color on hover */
}

.page-privacy-policy__cta-block {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #0A0A0A; /* Background */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
}

.page-privacy-policy__cta-text {
  font-size: 1.4em;
  color: #FFD36B; /* Glow color */
  margin-bottom: 30px;
  font-weight: bold;
}

/* Responsive design */
@media (min-width: 769px) {
  .page-privacy-policy__hero-section {
    flex-direction: row;
    text-align: left;
    padding: 80px 40px;
  }

  .page-privacy-policy__hero-content {
    flex: 1;
    margin-right: 40px;
    margin-bottom: 0;
    order: 1;
  }

  .page-privacy-policy__hero-image-wrapper {
    flex: 1;
    margin-top: 0;
    order: 2;
    max-width: 600px; /* Adjust max-width for image in desktop layout */
  }

  .page-privacy-policy__cta-buttons {
    flex-direction: row; /* Buttons side-by-side on desktop */
    max-width: none;
    justify-content: flex-start;
  }

  .page-privacy-policy__btn-primary,
  .page-privacy-policy__btn-secondary {
    width: auto;
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  /* Mobile specific adjustments */
  .page-privacy-policy__main-title {
    font-size: 2em;
  }

  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }

  .page-privacy-policy__sub-title {
    font-size: 1.4em;
  }

  .page-privacy-policy__text-block,
  .page-privacy-policy__list li,
  .page-privacy-policy__hero-description,
  .page-privacy-policy__contact-info p {
    font-size: 1em;
  }

  .page-privacy-policy__hero-section,
  .page-privacy-policy__content-area,
  .page-privacy-policy__dark-section,
  .page-privacy-policy__contact-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Images responsive */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  
  /* Containers responsive */
  .page-privacy-policy__section,
  .page-privacy-policy__card,
  .page-privacy-policy__container,
  .page-privacy-policy__hero-section,
  .page-privacy-policy__content-area,
  .page-privacy-policy__dark-section,
  .page-privacy-policy__contact-section,
  .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;
  }

  /* Buttons responsive */
  .page-privacy-policy__cta-button,
  .page-privacy-policy__btn-primary,
  .page-privacy-policy__btn-secondary,
  .page-privacy-policy a[class*="button"],
  .page-privacy-policy a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-privacy-policy__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically on mobile */
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
}