.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background);
}

.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px;
  text-align: center;
  background-color: var(--card-bg);
  color: var(--text-main);
  overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  box-sizing: border-box;
}

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

.page-privacy-policy__hero-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-privacy-policy__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-privacy-policy__section {
  padding: 60px 0;
  background-color: var(--background);
  color: var(--text-main);
}

.page-privacy-policy__section:nth-of-type(even) {
  background-color: var(--card-bg);
}

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

.page-privacy-policy__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--gold);
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-privacy-policy__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--glow);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

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

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.page-privacy-policy__list-item strong {
  color: var(--text-main);
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.page-privacy-policy__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-button--small {
  padding: 10px 20px;
  font-size: 1rem;
}

.page-privacy-policy__image-content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 30px;
}

.page-privacy-policy__image-content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-privacy-policy__section-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.page-privacy-policy__content-block {
  flex: 1;
  max-width: 50%;
}

.page-privacy-policy__contact-info-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 30px;
}

.page-privacy-policy__contact-info-wrapper .page-privacy-policy__section-image {
  max-width: 40%;
}

.page-privacy-policy__contact-info-wrapper .page-privacy-policy__content-block {
  max-width: 60%;
}

.page-privacy-policy a {
  color: var(--glow);
  text-decoration: underline;
}

.page-privacy-policy a:hover {
  color: var(--gold);
}

/* FAQ Section */
.page-privacy-policy__faq-section {
  background-color: var(--card-bg);
  padding-bottom: 80px;
}

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

.page-privacy-policy__faq-item {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  color: var(--text-main);
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--text-main);
  transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-question:hover {
  background-color: rgba(var(--deep-green-rgb), 0.5);
}

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

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
  content: '−';
}

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

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

.page-privacy-policy__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-privacy-policy__image-content-wrapper, .page-privacy-policy__contact-info-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-privacy-policy__section-image, .page-privacy-policy__contact-info-wrapper .page-privacy-policy__section-image {
    max-width: 80%;
    margin-bottom: 30px;
  }

  .page-privacy-policy__content-block, .page-privacy-policy__contact-info-wrapper .page-privacy-policy__content-block {
    max-width: 100%;
  }

  .page-privacy-policy__image-content-wrapper--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 10px 15px 40px;
  }

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

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

  .page-privacy-policy__section {
    padding: 40px 0;
  }

  .page-privacy-policy__container {
    padding: 0 15px;
  }

  .page-privacy-policy__section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .page-privacy-policy__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

  .page-privacy-policy__text-block, .page-privacy-policy__list-item, .page-privacy-policy__faq-answer p {
    font-size: 0.95rem;
  }

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

  .page-privacy-policy__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-privacy-policy__section-image, .page-privacy-policy__contact-info-wrapper .page-privacy-policy__section-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-privacy-policy__section,
  .page-privacy-policy__card,
  .page-privacy-policy__container,
  .page-privacy-policy__hero-image-wrapper,
  .page-privacy-policy__image-content-wrapper,
  .page-privacy-policy__content-block,
  .page-privacy-policy__contact-info-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-privacy-policy__hero-section .page-privacy-policy__hero-content-wrapper {
    padding: 0;
  }
}

/* Custom Colors */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
  --deep-green-rgb: 10, 75, 44; /* RGB for #0A4B2C */
}

/* Ensure color contrast */
.page-privacy-policy__faq-item {
  background-color: var(--background);
  color: var(--text-main);
}

.page-privacy-policy__faq-question {
  color: var(--text-main);
}

.page-privacy-policy__faq-answer {
  color: var(--text-secondary);
}

.page-privacy-policy__cta-button {
  background: var(--button-gradient);
  color: var(--text-main);
}

.page-privacy-policy__hero-section {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-privacy-policy__section:nth-of-type(even) {
  background-color: var(--card-bg);
}

.page-privacy-policy__section-title {
  color: var(--gold);
}

.page-privacy-policy__sub-title {
  color: var(--glow);
}

.page-privacy-policy p, .page-privacy-policy li {
  color: var(--text-main);
}

.page-privacy-policy__list-item strong {
  color: var(--text-main);
}

.page-privacy-policy a {
  color: var(--glow);
}

.page-privacy-policy a:hover {
  color: var(--gold);
}