/* style/privacy-policy.css */
:root {
  --goplay03-primary-color: #11A84E;
  --goplay03-secondary-color: #22C768;
  --goplay03-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --goplay03-card-bg: #11271B;
  --goplay03-background: #08160F;
  --goplay03-text-main: #F2FFF6;
  --goplay03-text-secondary: #A7D9B8;
  --goplay03-border: #2E7A4E;
  --goplay03-glow: #57E38D;
  --goplay03-gold: #F2C14E;
  --goplay03-divider: #1E3A2A;
  --goplay03-deep-green: #0A4B2C;
}

.page-privacy-policy {
  background-color: var(--goplay03-background); /* Dark background */
  color: var(--goplay03-text-main); /* Light text for contrast */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
}

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

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

.page-privacy-policy__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--goplay03-gold);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-privacy-policy__hero-description {
  font-size: 1.15rem;
  color: var(--goplay03-text-secondary);
  margin-bottom: 30px;
}

.page-privacy-policy__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--goplay03-button-gradient);
  color: var(--goplay03-text-main);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--goplay03-card-bg); /* Dark background for content sections */
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  margin-bottom: 40px;
  color: var(--goplay03-text-main);
}

.page-privacy-policy__article {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-privacy-policy__section-title {
  font-size: 2.2rem;
  color: var(--goplay03-primary-color);
  font-weight: 600;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--goplay03-divider);
  padding-bottom: 10px;
}

.page-privacy-policy__sub-title {
  font-size: 1.6rem;
  color: var(--goplay03-gold);
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy p {
  margin-bottom: 15px;
  color: var(--goplay03-text-main);
}

.page-privacy-policy li {
  margin-bottom: 8px;
  margin-left: 20px;
  list-style-type: disc;
  color: var(--goplay03-text-main);
}

.page-privacy-policy strong {
  color: var(--goplay03-gold);
}

.page-privacy-policy__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-privacy-policy__effective-date {
  font-style: italic;
  font-weight: 600;
  color: var(--goplay03-text-secondary);
  margin-top: 20px;
}

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

.page-privacy-policy__contact-list li {
  margin-bottom: 10px;
  color: var(--goplay03-text-main);
  margin-left: 0;
}

.page-privacy-policy__contact-link {
  color: var(--goplay03-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
  color: var(--goplay03-glow);
  text-decoration: underline;
}

.page-privacy-policy__btn-contact-cta {
  margin-top: 30px;
}

.page-privacy-policy__faq-section {
  background-color: var(--goplay03-background);
  padding: 60px 20px;
  text-align: center;
  color: var(--goplay03-text-main);
}

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

.page-privacy-policy__faq-list {
  margin-top: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-privacy-policy__faq-item {
  background-color: var(--goplay03-card-bg);
  border: 1px solid var(--goplay03-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.page-privacy-policy__faq-item[open] {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.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: var(--goplay03-text-main);
  cursor: pointer;
  background-color: var(--goplay03-deep-green);
  border-bottom: 1px solid var(--goplay03-border);
  transition: background-color 0.3s ease;
  list-style: none; /* For details tag */
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-question {
  background-color: var(--goplay03-primary-color);
  color: #ffffff;
}

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

.page-privacy-policy__faq-qtext {
  flex-grow: 1;
  color: var(--goplay03-text-main);
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-qtext {
  color: #ffffff;
}

.page-privacy-policy__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--goplay03-gold);
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
  color: #ffffff;
}

.page-privacy-policy__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--goplay03-text-secondary);
}

.page-privacy-policy__faq-answer p {
  margin-bottom: 0;
  color: var(--goplay03-text-secondary);
}

.page-privacy-policy__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background-color: transparent;
  color: var(--goplay03-gold);
  border: 2px solid var(--goplay03-gold);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: 40px;
}

.page-privacy-policy__btn-secondary:hover {
  background-color: var(--goplay03-gold);
  color: var(--goplay03-background);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-privacy-policy__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-privacy-policy__hero-description {
    font-size: 1rem;
  }

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

  .page-privacy-policy__content-area {
    padding: 25px 15px;
    margin-bottom: 25px;
  }

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

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

  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: unset;
    min-height: unset;
  }

  .page-privacy-policy__hero-image-wrapper,
  .page-privacy-policy__content-area,
  .page-privacy-policy__faq-section,
  .page-privacy-policy__container,
  .page-privacy-policy__faq-list,
  .page-privacy-policy__faq-item,
  .page-privacy-policy__btn-contact-cta,
  .page-privacy-policy__btn-faq-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

  .page-privacy-policy__faq-toggle {
    font-size: 1.5rem;
  }

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

  .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-left: 15px;
    padding-right: 15px;
  }
}