:root {
  --primary-color: #CC0000; /* Red - passion, fighting spirit */
  --secondary-color: #FFD700; /* Gold - wealth, reward */
  --text-light: #f0f0f0;
  --text-dark: #333333;
  --bg-dark: #000000;
  --bg-light-card: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark bg */
  --border-color: rgba(255, 255, 255, 0.15);
  --shadow-color-dark: rgba(0, 0, 0, 0.3);
  --shadow-color-light: rgba(0, 0, 0, 0.1);
}

.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Light text for dark body background */
  background-color: var(--bg-dark); /* Ensure explicit background for content area */
  padding-bottom: 60px; /* Space before footer */
}

/* Fixed Nav Spacing - Must be applied to the first main content section */
.page-privacy-policy__hero-section {
  padding-top: 120px; /* Desktop: Adjust based on shared header height */
  padding-bottom: 60px;
  background: var(--bg-dark);
}

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

/* Headings */
.page-privacy-policy__main-title {
  font-size: 42px;
  color: var(--secondary-color); /* Gold heading */
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.2;
}

.page-privacy-policy__hero-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-privacy-policy__section-title {
  font-size: 32px;
  color: var(--primary-color); /* Red heading */
  margin-top: 60px;
  margin-bottom: 25px;
  font-weight: bold;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 15px;
}

.page-privacy-policy__sub-title {
  font-size: 24px;
  color: var(--secondary-color); /* Gold sub-heading */
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Paragraphs and Lists */
.page-privacy-policy p {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-privacy-policy ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-privacy-policy li {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-light);
}

/* CTA Buttons */
.page-privacy-policy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  width: 100%; /* Ensure container takes full width */
  max-width: 100%; /* Ensure container doesn't overflow */
  box-sizing: border-box;
  padding: 0 15px; /* Add padding to prevent buttons from touching edges */
  overflow: hidden; /* Prevent overflow */
}

.page-privacy-policy__cta-buttons--bottom {
  margin-top: 60px;
  margin-bottom: 0;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-color-dark);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure button doesn't overflow */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
}

.page-privacy-policy__cta-button:hover {
  background: var(--secondary-color);
  color: var(--text-dark); /* Dark text on gold hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-color-dark);
}

.page-privacy-policy__cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px var(--shadow-color-dark);
}

/* Content Section Specifics */
.page-privacy-policy__content-section {
  padding: 40px 0;
}

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

.page-privacy-policy__contact-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.page-privacy-policy__contact-list li::before {
  content: "•"; /* Custom bullet point */
  color: var(--primary-color);
  font-size: 20px;
  margin-right: 10px;
  line-height: 1;
}

.page-privacy-policy__contact-link {
  color: var(--secondary-color); /* Gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
  color: var(--primary-color); /* Red on hover */
  text-decoration: underline;
}

/* Image responsive styles - IMPORTANT */
.page-privacy-policy img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px; /* Soften edges */
  box-shadow: 0 4px 10px var(--shadow-color-dark); /* Subtle shadow */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__main-title {
    font-size: 36px;
  }
  .page-privacy-policy__section-title {
    font-size: 28px;
  }
  .page-privacy-policy__sub-title {
    font-size: 22px;
  }
  .page-privacy-policy p,
  .page-privacy-policy li {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  /* Fixed Nav Spacing for Mobile */
  .page-privacy-policy__hero-section {
    padding-top: 100px !important; /* Mobile: Adjust based on shared header height */
    padding-bottom: 40px;
  }

  .page-privacy-policy__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-privacy-policy__main-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .page-privacy-policy__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-privacy-policy__section-title {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-privacy-policy__sub-title {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .page-privacy-policy p,
  .page-privacy-policy li {
    font-size: 14px;
  }

  /* CTA Buttons responsive */
  .page-privacy-policy__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-privacy-policy__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 16px;
    padding: 12px 25px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Image responsive - IMPORTANT */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  
  .page-privacy-policy__section, /* General section class */
  .page-privacy-policy__card, /* General card class if any */
  .page-privacy-policy__container { /* General container class */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Video responsive - Not present on this page, but as a general rule if they were added */
  .page-privacy-policy video,
  .page-privacy-policy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-privacy-policy__video-section,
  .page-privacy-policy__video-container,
  .page-privacy-policy__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  /* Specific padding-top for video section on mobile */
  .page-privacy-policy__video-section {
    padding-top: 10px !important; /* Mobile: According to prompt, this value is for video section */
  }
}