/* style/privacy-policy.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Deep Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f8f8;
  --background-dark: #222222;
  --border-color: #e0e0e0;
}

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

.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;
  background-color: var(--background-dark);
  color: var(--text-light);
  overflow: hidden;
}

.page-privacy-policy__hero-image {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  order: 1; /* Image first on mobile */
}

.page-privacy-policy__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  order: 2; /* Content second on mobile */
}

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

.page-privacy-policy__hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
  background: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button--bottom {
  margin-top: 40px;
  margin-bottom: 20px;
}

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

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

.page-privacy-policy__section:nth-of-type(even) {
  background-color: var(--background-light);
}

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

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

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

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

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

.page-privacy-policy ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

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

.page-privacy-policy ul li strong {
  color: var(--secondary-color);
}

.page-privacy-policy__image--medium {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-privacy-policy__hero {
    flex-direction: row;
    text-align: left;
    padding: 100px 40px;
    gap: 40px;
  }

  .page-privacy-policy__hero-content {
    order: 1;
    text-align: left;
    max-width: 60%;
  }

  .page-privacy-policy__hero-image {
    order: 2;
    max-width: 40%;
    margin-bottom: 0;
  }

  .page-privacy-policy__hero h1 {
    font-size: 4em;
  }

  .page-privacy-policy__hero p {
    font-size: 1.3em;
  }

  .page-privacy-policy h2 {
    font-size: 3em;
  }

  .page-privacy-policy h2::after {
    width: 100px;
  }

  .page-privacy-policy h3 {
    font-size: 2em;
  }
}

@media (max-width: 767px) {
  .page-privacy-policy__hero {
    padding: 40px 15px;
  }

  .page-privacy-policy__hero h1 {
    font-size: 2.5em;
  }

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

  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }

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

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

  .page-privacy-policy h2 {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .page-privacy-policy h3 {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 10px;
  }

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