/* style/privacy-policy.css */

:root {
  --primary-color: #FF4500;
  --secondary-color: #1E90FF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f9f9f9;
  --bg-dark: #1a1a1a;
  --border-color: #e0e0e0;
}

.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  background-color: var(--bg-light);
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

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

.page-privacy-policy__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__description {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-privacy-policy__content-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.page-privacy-policy__section-title {
  font-size: 32px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 25px;
  color: var(--primary-color);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 15px;
}

.page-privacy-policy__paragraph {
  margin-bottom: 20px;
  color: var(--text-dark);
  font-size: 17px;
  line-height: 1.7;
}

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

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.6;
}

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

.page-privacy-policy__link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-privacy-policy__main-title {
    font-size: 40px;
  }

  .page-privacy-policy__description {
    font-size: 18px;
  }

  .page-privacy-policy__section-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 15px;
    line-height: 1.5;
    padding-top: var(--header-offset, 120px) !important;
  }

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

  .page-privacy-policy__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-privacy-policy__description {
    font-size: 16px;
    margin-bottom: 30px;
  }

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

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

  .page-privacy-policy__section-title {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }

  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item {
    font-size: 16px;
  }

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

  .page-privacy-policy__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  
  .page-privacy-policy__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: 28px;
  }

  .page-privacy-policy__description {
    font-size: 15px;
  }

  .page-privacy-policy__section-title {
    font-size: 22px;
  }
  .page-privacy-policy__hero-section {
    padding: 40px 15px;
  }
  .page-privacy-policy__content-section {
    padding: 30px 0;
  }
}