/* style/privacy-policy.css */

:root {
  --primary-color: #0A2463;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f8f8;
  --border-color: #e0e0e0;
}

.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

.page-privacy-policy__hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
  background-color: var(--primary-color);
}

.page-privacy-policy__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-light);
}

.page-privacy-policy__hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__hero-content p {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  opacity: 0.9;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  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);
  text-transform: uppercase;
}

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

.page-privacy-policy__section {
  padding: 60px 20px;
  border-bottom: 1px solid var(--border-color);
}

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

.page-privacy-policy__container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__container h2 {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.page-privacy-policy__container h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid var(--secondary-color);
  padding-left: 15px;
}

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

.page-privacy-policy__container ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

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

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-content h1 {
    font-size: 2.8em;
  }
  .page-privacy-policy__hero-content p {
    font-size: 1.2em;
  }
  .page-privacy-policy__container {
    padding: 30px;
  }
  .page-privacy-policy__container h2 {
    font-size: 2.2em;
  }
  .page-privacy-policy__container h3 {
    font-size: 1.6em;
  }
  .page-privacy-policy__container p, .page-privacy-policy__container ul li {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero {
    padding: 40px 15px;
  }
  .page-privacy-policy__hero-image {
    max-height: 300px;
    margin-bottom: 20px;
  }
  .page-privacy-policy__hero-content h1 {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-privacy-policy__hero-content p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-privacy-policy__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-privacy-policy__section {
    padding: 40px 15px;
  }
  .page-privacy-policy__container {
    padding: 25px;
  }
  .page-privacy-policy__container h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-privacy-policy__container h3 {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-privacy-policy__container ul {
    margin-left: 15px;
  }
  .page-privacy-policy__image {
    max-height: 250px;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero-content h1 {
    font-size: 1.8em;
  }
  .page-privacy-policy__hero-content p {
    font-size: 0.9em;
  }
  .page-privacy-policy__cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-privacy-policy__container h2 {
    font-size: 1.5em;
  }
  .page-privacy-policy__container h3 {
    font-size: 1.2em;
  }
}