/* Privacy Policy Page Styles */

.header--privacy {
  background-image: none !important;
  background-color: var(--color-background-desktop);
  height: auto;
  padding: 20px 0;
}

.privacy-main {
  min-height: 100vh;
  background-image: url(../assets/images/policy.png);
  background-size: 100% auto;
  background-position: 100% -10%;
  background-repeat: no-repeat;
  background-color: var(--color-background-desktop);
  padding: 50px 0 50px;
}

.privacy__title {
  font-family: var(--font-heading);
  font-size: var(--text-heading);
  color: var(--color-white);
  text-align: center;
  margin-bottom: 40px;
  font-weight: var(--font-weight-bold);
}

.privacy__meta {
  margin-bottom: 50px;
  text-align: center;
}

.privacy__company {
  font-family: var(--font-text);
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 10px;
}

.privacy__date {
  font-family: var(--font-text);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.privacy__date span {
  color: var(--color-white);
}

.privacy__content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy__intro {
  margin-bottom: 40px;
}

.offer-main {
  background-position: 100% -5% !important;
}

.privacy__section {
  margin-bottom: 40px;
}

.privacy__section:last-child {
  margin-bottom: 0;
}

.privacy__section-title {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-white);
  margin-bottom: 20px;
  font-weight: var(--font-weight-bold);
}

.privacy__paragraph {
  font-family: var(--font-text);
  font-size: var(--text-body);
  color: var(--color-white);
  line-height: 1.8;
  margin-bottom: 15px;
}

.privacy__paragraph:last-child {
  margin-bottom: 24px;
}

.privacy__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.privacy__list-item {
  font-family: var(--font-text);
  font-size: var(--text-body);
  color: var(--color-white);
  padding-left: 25px;
  position: relative;
  line-height: 1.8;
  margin-bottom: 10px;
}

.privacy__list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-white);
}

.privacy__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy__link:hover {
  color: var(--color-white);
}

.privacy__contact-title {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-white);
  margin-bottom: 20px;
  font-weight: var(--font-weight-bold);
}

.privacy__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy__contact-item {
  font-family: var(--font-text);
  font-size: var(--text-body);
  color: var(--color-white);
  line-height: 1.8;
  margin-bottom: 10px;
}

.privacy__contact-item:last-child {
  margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .privacy-main {
    padding: 10px 0 30px;
  }

  .privacy__title {
    font-size: 28px;
  }

  .privacy__section-title,
  .privacy__contact-title {
    font-size: 20px;
  }

  .privacy__paragraph,
  .privacy__list-item,
  .privacy__contact-item {
    font-size: 16px;
  }

  .privacy__section {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .privacy__title {
    font-size: 24px;
  }

  .privacy__meta {
    margin-bottom: 30px;
  }

  .privacy__company {
    font-size: 16px;
  }

  .privacy__date {
    font-size: 14px;
  }
}

