/* style/privacy-policy.css */

/* Base Styles for Privacy Policy Page */
.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background #121212 */
  background-color: #121212; /* Inherit from body or set explicitly if needed */
}

/* Hero Section */
.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero */
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  overflow: hidden;
  background-color: #0d0d0d; /* Slightly darker than body for contrast */
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
  z-index: 1;
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for text readability */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* General Content Area */
.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #1a1a1a; /* Slightly lighter than body for content separation */
  border-radius: 8px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #017439; /* Brand color for main titles */
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: left;
  border-bottom: 2px solid rgba(1, 116, 57, 0.5);
  padding-bottom: 10px;
}

.page-privacy-policy__sub-title {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-privacy-policy__paragraph {
  font-size: 1.1em;
  color: #e0e0e0; /* Lighter white for body text */
  margin-bottom: 15px;
}

.page-privacy-policy__highlight {
  color: #FFFF00; /* Yellow for highlights */
  font-weight: bold;
}

.page-privacy-policy__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
  line-height: 1.5;
}

.page-privacy-policy__inline-link {
  color: #017439; /* Brand color for inline links */
  text-decoration: underline;
}

.page-privacy-policy__inline-link:hover {
  color: #FFFF00; /* Yellow on hover */
  text-decoration: none;
}

/* Image styling */
.page-privacy-policy__image-full {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  text-align: center;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box; /* Include padding in width */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
}

.page-privacy-policy__btn-primary {
  background-color: #C30808; /* Red for primary action (Register/Login) */
  color: #FFFF00; /* Yellow for text */
  border: 2px solid #C30808;
  margin-right: 15px;
}

.page-privacy-policy__btn-primary:hover {
  background-color: #e01c1c;
  border-color: #e01c1c;
  color: #FFFFFF;
}

.page-privacy-policy__btn-secondary {
  background-color: transparent;
  color: #017439; /* Brand color for secondary text */
  border: 2px solid #017439;
}

.page-privacy-policy__btn-secondary:hover {
  background-color: #017439;
  color: #FFFFFF;
}

/* CTA Section */
.page-privacy-policy__cta-section {
  background-color: #017439; /* Brand color background */
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-container {
  max-width: 800px;
}

.page-privacy-policy__cta-title {
  font-size: 2.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-privacy-policy__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-privacy-policy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

/* FAQ Section */
.page-privacy-policy__faq-section {
  padding: 60px 20px;
  background-color: #1a1a1a; /* Content background */
}

.page-privacy-policy__faq-list {
  margin-top: 40px;
}

.page-privacy-policy__faq-item {
  background-color: #2a2a2a; /* Slightly lighter than content area */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #333333; /* Darker background for question */
  border-bottom: 1px solid #444444;
}

.page-privacy-policy__faq-question:hover {
  background-color: #444444;
}