/* style/privacy-policy.css */
.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color, #333333);
  background-color: var(--site-bg-color, #F5F7FA);
}

.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, main offset from body */
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  overflow: hidden;
}

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

.page-privacy-policy__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

.page-privacy-policy__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__description {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 800px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.9);
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--card-bg-color, #FFFFFF);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transform: translateY(-30px);
  position: relative;
  z-index: 1;
}

.page-privacy-policy__section-wrapper {
  padding: 20px;
}

.page-privacy-policy__section-title {
  font-size: clamp(22px, 3vw, 32px);
  color: var(--primary-color, #E53935);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  border-bottom: 2px solid var(--primary-color, #E53935);
  padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
  font-size: 17px;
  margin-bottom: 20px;
  color: var(--text-main-color, #333333);
}

.page-privacy-policy__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-privacy-policy__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--text-main-color, #333333);
}

.page-privacy-policy__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--primary-color, #E53935);
  font-weight: bold;
}

.page-privacy-policy__list-item strong {
  color: var(--primary-color, #E53935);
}

.page-privacy-policy__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

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

.page-privacy-policy__paragraph a {
  color: var(--primary-color, #E53935);
  text-decoration: underline;
}

.page-privacy-policy__paragraph a:hover {
  color: var(--secondary-color, #FF5A4F);
  text-decoration: none;
}

.page-privacy-policy__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color, #E0E0E0);
}

.page-privacy-policy__cta-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main-color, #333333);
  margin-bottom: 25px;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(229, 57, 53, 0.4);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure button adapts */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-privacy-policy__cta-button:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(229, 57, 53, 0.6);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-privacy-policy__content-area {
    padding: 30px 15px;
  }
  .page-privacy-policy__section-title {
    font-size: 28px;
  }
  .page-privacy-policy__paragraph {
    font-size: 16px;
  }
  .page-privacy-policy__list-item {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-privacy-policy__hero-image {
    margin-bottom: 20px;
  }
  .page-privacy-policy__main-title {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .page-privacy-policy__description {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .page-privacy-policy__content-area {
    padding: 20px 10px;
    transform: translateY(-20px);
  }
  .page-privacy-policy__section-wrapper {
    padding: 10px;
  }
  .page-privacy-policy__section-title {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-privacy-policy__paragraph {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .page-privacy-policy__list-item {
    font-size: 14px;
    padding-left: 25px;
  }
  .page-privacy-policy__list-item::before {
    font-size: 14px;
  }
  .page-privacy-policy__image-wrapper {
    margin: 20px 0;
  }
  .page-privacy-policy__image-wrapper img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-privacy-policy__cta-wrapper {
    margin-top: 30px;
    padding-top: 20px;
  }
  .page-privacy-policy__cta-text {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .page-privacy-policy__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-privacy-policy__content-area, .page-privacy-policy__section-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-privacy-policy__hero-container {
    padding-left: 0;
    padding-right: 0;
  }
}