/* style/privacy-policy.css */

.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #f8f9fa;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-privacy-policy__hero-section {
  background-color: #007bff; /* Main brand color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-privacy-policy__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 1;
}

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffc107; /* Auxiliary color for emphasis */
}

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

.page-privacy-policy__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__section {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.page-privacy-policy__section:last-of-type {
  border-bottom: none;
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 20px;
  border-left: 5px solid #ffc107;
  padding-left: 15px;
}

.page-privacy-policy__subsection-title {
  font-size: 1.5em;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
  color: #555555;
}

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

.page-privacy-policy__list-item {
  margin-bottom: 10px;
}

.page-privacy-policy__list-item strong {
  color: #333333;
}

.page-privacy-policy__image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

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

.page-privacy-policy__contact-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-privacy-policy__contact-item a {
  color: #007bff;
  text-decoration: none;
}

.page-privacy-policy__contact-item a:hover {
  text-decoration: underline;
}

.page-privacy-policy__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1.05em;
}

.page-privacy-policy__button--primary {
  background-color: #ffc107;
  color: #333333;
}

.page-privacy-policy__button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-privacy-policy__button--secondary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.page-privacy-policy__button--secondary:hover {
  background-color: #ffc107;
  color: #333333;
  transform: translateY(-2px);
}

.page-privacy-policy__cta-section {
  background-color: #007bff;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  margin-top: 40px;
}

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

.page-privacy-policy__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-privacy-policy__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-privacy-policy__hero-title {
    font-size: 2.2em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__subsection-title {
    font-size: 1.3em;
  }
  .page-privacy-policy__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__hero-description {
    font-size: 1em;
  }
  .page-privacy-policy__hero-actions,
  .page-privacy-policy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-privacy-policy__button {
    width: 100%;
    max-width: 280px;
  }
  .page-privacy-policy__content-area {
    padding: 30px 15px;
  }
  .page-privacy-policy__section-title {
    font-size: 1.6em;
  }
  .page-privacy-policy__subsection-title {
    font-size: 1.2em;
  }
  .page-privacy-policy__cta-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min size for mobile */
    min-height: 200px; /* Ensure min size for mobile */
  }
  .page-privacy-policy {
    overflow-x: hidden; /* Prevent horizontal scrolling */
  }
}