/* General styles for the privacy policy page */
.page-privacy-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main */
    background: #0A0A0A; /* Background */
    padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
}

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

.page-privacy-policy__section {
    padding: 40px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #3A2A12; /* Border */
}

.page-privacy-policy__section:last-of-type {
    border-bottom: none;
}

.page-privacy-policy__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Primary color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-privacy-policy__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size for H1 */
    color: #F2C14E; /* Primary color */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__lead-text {
    font-size: 1.2em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #FFF6D6; /* Text Main */
}

.page-privacy-policy__content-block {
    background: #111111; /* Card BG */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12; /* Border */
}

.page-privacy-policy__content-block p {
    margin-bottom: 15px;
    color: #FFF6D6; /* Text Main */
}

.page-privacy-policy__content-block h2,
.page-privacy-policy__content-block h3 {
    color: #F2C14E; /* Primary color */
    margin-top: 25px;
    margin-bottom: 15px;
}

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

.page-privacy-policy__list li {
    margin-bottom: 10px;
}

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

.page-privacy-policy a {
    color: #FFD36B; /* Glow */
    text-decoration: none;
}

.page-privacy-policy a:hover {
    text-decoration: underline;
    color: #F2C14E; /* Primary color */
}

/* Hero Section */
.page-privacy-policy__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 10px 0 60px; /* Small top padding, more bottom padding */
    background: #0A0A0A; /* Background */
}

.page-privacy-policy__hero-content {
    order: 2; /* Text below image */
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.page-privacy-policy__hero-image {
    order: 1; /* Image above text */
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid #3A2A12;
}

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

/* CTA Buttons */
.page-privacy-policy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Ensure wrapping on smaller screens */
    width: 100%; /* For mobile responsiveness */
    max-width: 100%; /* For mobile responsiveness */
    box-sizing: border-box; /* Crucial for buttons */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
    min-width: 180px;
    text-align: center;
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    box-sizing: border-box; /* Crucial for buttons */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
    min-width: 180px;
    text-align: center;
}

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

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

.page-privacy-policy__btn-secondary {
    background: #111111; /* Card BG */
    color: #F2C14E; /* Primary color */
    border: 2px solid #F2C14E; /* Primary color */
}

.page-privacy-policy__btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background: #F2C14E; /* Primary color */
    color: #111111; /* Dark text */
}

/* Inline Images */
.page-privacy-policy__image-inline {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #3A2A12;
}

/* Contact List */
.page-privacy-policy__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    color: #FFF6D6; /* Text Main */
}

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

.page-privacy-policy__contact-list li strong {
    color: #FFD36B; /* Glow */
}

/* FAQ Section */
details.page-privacy-policy__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
}
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;
  color: #F2C14E; /* Primary color */
}
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: rgba(242, 193, 78, 0.1); /* Slight hover effect with primary color */
}
.page-privacy-policy__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF6D6; /* Text Main */
}
details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question:hover .page-privacy-policy__faq-qtext {
    color: #F2C14E; /* Primary color on hover */
}
.page-privacy-policy__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  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: #0A0A0A; /* Background */
  border-radius: 0 0 5px 5px;
  color: #FFF6D6; /* Text Main */
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: clamp(2em, 4vw, 3em);
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
    .page-privacy-policy__lead-text {
        font-size: 1.1em;
    }
}