/* style/resources-88clb-app-security-privacy.css */

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

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

/* Hero Section */
.page-resources-88clb-app-security-privacy__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background-color: #1a1a1a; /* A slightly lighter dark background for hero */
  color: #ffffff;
  overflow: hidden;
  padding: 60px 20px;
  text-align: center;
}

.page-resources-88clb-app-security-privacy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-88clb-app-security-privacy__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for title */
  line-height: 1.2;
}

.page-resources-88clb-app-security-privacy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-88clb-app-security-privacy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Make background image subtle */
  z-index: 1;
}

/* CTA Buttons */
.page-resources-88clb-app-security-privacy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-resources-88clb-app-security-privacy__btn-primary,
.page-resources-88clb-app-security-privacy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure buttons are responsive */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-88clb-app-security-privacy__btn-primary {
  background-color: #26A9E0; /* Brand primary color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-88clb-app-security-privacy__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-resources-88clb-app-security-privacy__btn-secondary {
  background-color: transparent;
  color: #EA7C07; /* Login button color */
  border: 2px solid #EA7C07;
}

.page-resources-88clb-app-security-privacy__btn-secondary:hover {
  background-color: #EA7C07;
  color: #ffffff;
}

/* General Section Styles */
.page-resources-88clb-app-security-privacy__section {
  padding: 80px 0;
  background-color: #121212; /* Dark background */
  color: #ffffff; /* Light text */
}

.page-resources-88clb-app-security-privacy__section:nth-of-type(even) {
  background-color: #1a1a1a; /* Alternate dark background */
}

.page-resources-88clb-app-security-privacy__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-resources-88clb-app-security-privacy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #EA7C07; /* Accent color for underline */
  border-radius: 2px;
}

.page-resources-88clb-app-security-privacy__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0;
}

/* Feature Grid */
.page-resources-88clb-app-security-privacy__feature-grid,
.page-resources-88clb-app-security-privacy__privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}