/* style/privacy-policy.css */
:root {
  --primary-color: #0A2463;
  --secondary-color: #E3B505;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark-1: #0d0d0d;
  --bg-light-1: #f8f9fa;
  --border-color: #e0e0e0;
}

.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Adjust for fixed header on desktop */
  background-color: var(--bg-dark-1); /* Default background, will be overridden by sections */
  color: var(--text-light); /* Default text color for dark body */
}

.page-privacy-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-privacy-policy__hero-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #061536 100%);
  color: var(--text-light);
  box-shadow: inset 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-privacy-policy__highlight {
  color: var(--secondary-color);
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
  background: #c79a00; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Content Sections */
.page-privacy-policy__content-section {
  padding: 60px 0;
}

.page-privacy-policy__light-bg {
  background-color: var(--bg-light-1);
  color: var(--text-dark);
}

.page-privacy-policy__dark-bg {
  background-color: var(--bg-dark-1);
  color: var(--text-light);
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.page-privacy-policy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

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

/* Card Grid */
.page-privacy-policy__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-privacy-policy__card {
  background-color: #ffffff;
  color: var(--text-dark);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-privacy-policy__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-privacy-policy__card-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  max-width: 100%;
  height: auto;
  display: block;
}

.page-privacy-policy__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Lists */
.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.05em;
}

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

.page-privacy-policy__list--dark-bg {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-privacy-policy__list--dark-bg li {
  margin-bottom: 10px;
}

/* Security Features */
.page-privacy-policy__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-privacy-policy__security-item {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-privacy-policy__security-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__security-item h3 {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-privacy-policy__security-item p {
  font-size: 1em;
  opacity: 0.8;
}

.page-privacy-policy__note {
  font-style: italic;
  text-align: center;
  margin-top: 40px;
  opacity: 0.8;
  font-size: 0.95em;
}

/* Contact List */
.page-privacy-policy__contact-list {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
  text-align: center;
}

.page-privacy-policy__contact-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-privacy-policy__contact-list strong {
  color: var(--secondary-color);
}

.page-privacy-policy__contact-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
  color: #c79a00; /* Slightly darker gold */
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-title {
    font-size: 2.8em;
  }
  .page-privacy-policy__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy {
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
  }

  .page-privacy-policy__container {
    padding: 0 15px;
  }

  .page-privacy-policy__hero-section {
    padding: 60px 0;
  }

  .page-privacy-policy__hero-title {
    font-size: 2.2em;
  }

  .page-privacy-policy__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-privacy-policy__cta-button {
    padding: 12px 30px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

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

  .page-privacy-policy__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-privacy-policy__card {
    padding: 25px;
  }

  .page-privacy-policy__card-icon {
    width: 80px;
    height: 80px;
  }

  .page-privacy-policy__card-title {
    font-size: 1.3em;
  }

  .page-privacy-policy__list {
    font-size: 1em;
    margin-left: 15px;
  }

  .page-privacy-policy__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-privacy-policy__security-icon {
    width: 70px;
    height: 70px;
  }

  .page-privacy-policy__security-item h3 {
    font-size: 1.2em;
  }

  .page-privacy-policy__contact-list li {
    font-size: 1em;
  }

  /* Ensure all images are responsive */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-privacy-policy__container,
  .page-privacy-policy__card-grid,
  .page-privacy-policy__card,
  .page-privacy-policy__security-features,
  .page-privacy-policy__security-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-privacy-policy__card {
    margin-left: 15px;
    margin-right: 15px;
  }
  .page-privacy-policy__security-item {
    margin-left: 15px;
    margin-right: 15px;
  }
}