/* style/resources-platform-security-privacy.css */

/* Base styles for the page content */
.page-resources-platform-security-privacy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text on dark body background #121212 */
  background-color: transparent; /* Body background is handled by shared.css */
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-resources-platform-security-privacy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Section */
.page-resources-platform-security-privacy__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  background-color: #017439; /* Brand color for hero background */
  color: #ffffff;
}

.page-resources-platform-security-privacy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-resources-platform-security-privacy__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-platform-security-privacy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-resources-platform-security-privacy__hero-description a {
  color: #FFFF00; /* Yellow for links in hero description */
  text-decoration: underline;
}

.page-resources-platform-security-privacy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-resources-platform-security-privacy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Make it subtle */
}

/* General Section Styles */
.page-resources-platform-security-privacy__section {
  padding: 60px 0;
}

.page-resources-platform-security-privacy__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter than body for contrast, but still dark */
  color: #ffffff;
}

.page-resources-platform-security-privacy__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-platform-security-privacy__section-title {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherit color from parent section */
}

.page-resources-platform-security-privacy__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-platform-security-privacy__text-block a {
  color: #017439; /* Brand color for links in light sections */
  text-decoration: underline;
}

.page-resources-platform-security-privacy__dark-bg .page-resources-platform-security-privacy__text-block a {
  color: #FFFF00; /* Yellow for links in dark sections */
  text-decoration: underline;
}

.page-resources-platform-security-privacy__text-block .keyword {
  font-weight: bold;
  color: #017439; /* Highlight keywords in light sections */
}

.page-resources-platform-security-privacy__dark-bg .page-resources-platform-security-privacy__text-block .keyword {
  color: #FFFF00; /* Highlight keywords in dark sections */
}

/* List Styles */
.page-resources-platform-security-privacy__list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-resources-platform-security-privacy__list-item {
  background-color: rgba(255, 255, 255, 0.05); /* Subtle background for list items in dark sections */
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-resources-platform-security-privacy__light-bg .page-resources-platform-security-privacy__list-item {
  background-color: #f8f8f8; /* Light background for list items in light sections */
  color: #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-platform-security-privacy__list-title {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
  color: inherit;
}

/* Image Styles */
.page-resources-platform-security-privacy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Button Styles */
.page-resources-platform-security-privacy__btn-primary,
.page-resources-platform-security-privacy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box; /* Crucial for responsive buttons */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-resources-platform-security-privacy__btn-primary {
  background-color: #C30808; /* Custom red for primary action (Download/Register/Login) */
  color: #FFFF00; /* Custom yellow for font */
  border: 2px solid #C30808;
}

.page-resources-platform-security-privacy__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
  color: #ffffff;
}

.page-resources-platform-security-privacy__btn-secondary {
  background-color: #ffffff;
  color: #017439; /* Brand green for text */
  border: 2px solid #017439;
}

.page-resources-platform-security-privacy__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
}

.page-resources-platform-security-privacy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  width: 100%; /* Ensure container takes full width */
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* FAQ Section */
.page-resources-platform-security-privacy__faq-list {
  margin-top: 40px;
}

.page-resources-platform-security-privacy__faq-item {
  background-color: rgba(255, 255, 255, 0.05); /* Subtle background for FAQ items in dark sections */
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  padding: 0; /* Remove default padding for details */
}

.page-resources-platform-security-privacy__light-bg .page-resources-platform-security-privacy__faq-item {
  background-color: #f8f8f8; /* Light background for FAQ items in light sections */
  color: #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-platform-security-privacy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: inherit;
}

.page-resources-platform-security-privacy__light-bg .page-resources-platform-security-privacy__faq-question {
  border-bottom: 1px solid #e0e0e0;
}

.page-resources-platform-security-privacy__faq-question::-webkit-details-marker {
  display: none;
}

.page-resources-platform-security-privacy__faq-item summary {
  list-style: none; /* Remove default marker */
}

.page-resources-platform-security-privacy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}