/* ==========================================================================
   Privacy Policy Page Styles
   ========================================================================== */

/* Privacy Policy Section */
.privacy-policy-section {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 100vh;
  background-color: #fafafa;
}

.privacy-policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Title */
.privacy-policy-title {
  font-family: 'Poiret One', sans-serif;
  font-size: 76px;
  font-weight: 600;
  line-height: 111px;
  color: #161616;
  margin-bottom: 16px;
  text-align: center;
}

.privacy-policy-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: #161616;
  text-align: center;
  margin-bottom: 60px;
  opacity: 0.8;
}

/* Policy Sections */
.policy-section {
  margin-bottom: 48px;
}

.policy-section-title {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 60px;
  color: #1A1A1A;
  margin-bottom: 24px;
}

.policy-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: #7A7A7A;
  margin-bottom: 16px;
  opacity: 0.9;
}

.policy-text:last-child {
  margin-bottom: 0;
}

.policy-link {
  color: #ff5500;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.policy-link:hover {
  color: #cc4400;
  text-decoration: underline;
}

/* Policy Lists */
.policy-list {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: #161616;
  margin-left: 24px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.policy-list li {
  margin-bottom: 12px;
  list-style-type: disc;
}

.policy-list li:last-child {
  margin-bottom: 0;
}

.policy-section strong {
  font-weight: 600;
  color: #161616;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Large devices (desktops, 992px and down) */
@media (max-width: 992px) {
  .privacy-policy-title {
    font-size: 72px;
    line-height: 84px;
  }

  .privacy-policy-subtitle {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 50px;
  }

  .policy-section-title {
    font-size: 40px;
    line-height: 50px;
  }

  .policy-text,
  .policy-list {
    font-size: 17px;
    line-height: 30px;
  }
}

/* Medium devices (tablets, 768px and down) */
@media (max-width: 768px) {
  .privacy-policy-section {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .privacy-policy-content {
    padding: 0 24px;
  }

  .privacy-policy-title {
    font-size: 56px;
    line-height: 64px;
    margin-bottom: 12px;
  }

  .privacy-policy-subtitle {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 40px;
  }

  .policy-section {
    margin-bottom: 40px;
  }

  .policy-section-title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 20px;
  }

  .policy-text,
  .policy-list {
    font-size: 16px;
    line-height: 28px;
  }

  .policy-list {
    margin-left: 20px;
  }
}

/* Small devices (phones, 576px and down) */
@media (max-width: 576px) {
  .privacy-policy-section {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .privacy-policy-content {
    padding: 0 20px;
  }

  .privacy-policy-title {
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 10px;
  }

  .privacy-policy-subtitle {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 32px;
  }

  .policy-section {
    margin-bottom: 32px;
  }

  .policy-section-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 16px;
  }

  .policy-text,
  .policy-list {
    font-size: 15px;
    line-height: 26px;
  }

  .policy-list {
    margin-left: 18px;
  }

  .policy-list li {
    margin-bottom: 10px;
  }
}

/* Extra small devices (phones, 414px and down) */
@media (max-width: 414px) {
  .privacy-policy-section {
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .privacy-policy-content {
    padding: 0 16px;
  }

  .privacy-policy-title {
    font-size: 36px;
    line-height: 42px;
  }

  .privacy-policy-subtitle {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 28px;
  }

  .policy-section {
    margin-bottom: 28px;
  }

  .policy-section-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 14px;
  }

  .policy-text,
  .policy-list {
    font-size: 14px;
    line-height: 24px;
  }

  .policy-list {
    margin-left: 16px;
  }
}

/* Extra small devices (phones, 360px and down) */
@media (max-width: 360px) {
  .privacy-policy-title {
    font-size: 32px;
    line-height: 38px;
  }

  .privacy-policy-subtitle {
    font-size: 15px;
    line-height: 22px;
  }

  .policy-section-title {
    font-size: 22px;
    line-height: 28px;
  }

  .policy-text,
  .policy-list {
    font-size: 13px;
    line-height: 22px;
  }
}

