/* style/privacy-policy.css */

/* Base styles for the privacy policy page */
.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1A2C42; /* Main text color */
  background-color: #f8f8f8;
}

.page-privacy-policy__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-privacy-policy__hero {
  background: linear-gradient(135deg, #1A2C42 0%, #3a506b 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #E0B147; /* Accent color for title */
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.page-privacy-policy__hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

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

.page-privacy-policy__section--alt-bg {
  background-color: #eef2f5;
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #1A2C42;
  margin-bottom: 25px;
  text-align: center;
  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: #E0B147;
  border-radius: 2px;
}

.page-privacy-policy__section p {
  font-size: 1.1em;
  margin-bottom: 15px;
  text-align: justify;
}

.page-privacy-policy__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

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

.page-privacy-policy__list li strong {
  color: #1A2C42;
}

.page-privacy-policy__image-content {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__cta-section {
  background-color: #E0B147; /* Accent color background */
  color: #1A2C42; /* Dark text for contrast */
  padding: 70px 0;
  text-align: center;
}

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

.page-privacy-policy__cta-description {
  font-size: 1.2em;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #1A2C42; /* Dark blue button */
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:hover {
  background-color: #0f1e2f; /* Slightly darker blue on hover */
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__hero-title {
    font-size: 2.5em;
  }
  .page-privacy-policy__hero-description,
  .page-privacy-policy__cta-description {
    font-size: 1em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__cta-title {
    font-size: 2em;
  }
  .page-privacy-policy__list {
    margin-left: 0;
    padding-left: 20px;
  }
  .page-privacy-policy__image-content {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero {
    padding: 60px 0;
  }
  .page-privacy-policy__hero-title {
    font-size: 2em;
  }
  .page-privacy-policy__section {
    padding: 40px 0;
  }
  .page-privacy-policy__section-title {
    font-size: 1.5em;
  }
  .page-privacy-policy__cta-section {
    padding: 50px 0;
  }
  .page-privacy-policy__cta-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}