/* style/privacy-policy.css */

.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A1931; /* Main dark blue background */
}

.page-privacy-policy__hero {
  background: linear-gradient(135deg, #0A1931, #2C3E50);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-privacy-policy__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(10, 25, 49, 0) 70%);
  opacity: 0.3;
  animation: page-privacy-policy__rotate 20s linear infinite;
}

@keyframes page-privacy-policy__rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-privacy-policy__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-privacy-policy__title {
  font-size: 3.5em;
  color: #FFD700; /* Golden yellow for main titles */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__subtitle {
  font-size: 1.4em;
  color: #B0C4DE; /* Lighter grey for subtitles */
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-privacy-policy__btn-primary {
  display: inline-block;
  background-color: #FFD700; /* Golden yellow for primary buttons */
  color: #0A1931; /* Dark blue text for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-privacy-policy__btn-primary:hover {
  background-color: #E03B8B; /* Magenta for hover */
  color: #FFFFFF;
  transform: translateY(-3px);
}

.page-privacy-policy__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #FFD700; /* Golden yellow text for secondary buttons */
  border: 2px solid #FFD700;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.page-privacy-policy__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-privacy-policy__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-privacy-policy__section--alt {
  background-color: #1A2A40; /* Slightly lighter dark blue for alternate sections */
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Golden yellow for section titles */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-privacy-policy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 3px;
  background-color: #E03B8B; /* Magenta accent */
  border-radius: 2px;
}

.page-privacy-policy__sub-title {
  font-size: 1.6em;
  color: #FFD700; /* Golden yellow for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
}

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

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

.page-privacy-policy__list li::marker {
  color: #FFD700; /* Golden yellow for list markers */
}

.page-privacy-policy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-privacy-policy__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-privacy-policy__grid-item {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-privacy-policy__grid-item:hover {
  transform: translateY(-5px);
}

.page-privacy-policy__grid-item p {
  color: #B0C4DE;
}

.page-privacy-policy__section--contact {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__title {
    font-size: 2.5em;
  }

  .page-privacy-policy__subtitle {
    font-size: 1.2em;
  }

  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }

  .page-privacy-policy__sub-title {
    font-size: 1.4em;
  }

  .page-privacy-policy p {
    font-size: 1em;
  }

  .page-privacy-policy__list {
    margin-left: 20px;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__title {
    font-size: 2em;
  }

  .page-privacy-policy__subtitle {
    font-size: 1em;
  }

  .page-privacy-policy__section {
    padding: 40px 0;
  }

  .page-privacy-policy__section-title {
    font-size: 1.5em;
  }

  .page-privacy-policy__sub-title {
    font-size: 1.2em;
  }

  .page-privacy-policy__btn-primary, .page-privacy-policy__btn-secondary {
    padding: 12px 20px;
    font-size: 0.9em;
  }

  .page-privacy-policy__content-grid {
    grid-template-columns: 1fr;
  }
}