/* Privacy Policy Page Styles */
.policy-page-section {
  padding: 120px 0;
  background: #f7fafc;
  min-height: 70vh;
}

.policy-content {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.policy-page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 40px;
  text-align: left;
  font-family: 'Playfair Display', serif;
}

.policy-text {
  color: #4a5568;
  line-height: 1.8;
  font-size: 1rem;
  text-align: left;
}

.policy-text h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d3748;
  margin-top: 50px;
  margin-bottom: 25px;
  font-family: 'Playfair Display', serif;
}

.policy-text h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-text p {
  margin-bottom: 20px;
}

.policy-text ul {
  margin: 20px 0;
  padding-left: 30px;
}

.policy-text ul li {
  margin-bottom: 15px;
  line-height: 1.7;
}

.policy-text strong {
  color: #2d3748;
  font-weight: 600;
}

.policy-text u {
  text-decoration: underline;
  color: #2d3748;
}

/* Modern Header Styles (shared) */
.modern-header {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 8px 0;
}

.header-top .ad-label {
  text-align: center;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.5px;
}

.header-main {
  padding: 15px 0;
  background: #ffffff;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d3748;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-link {
  display: inline-block;
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 18px;
  border-radius: 999px;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
  background-color: transparent;
}

.nav-link:hover,
.nav-link.active {
  background-color: rgba(102, 126, 234, 0.08);
  color: #667eea;
  box-shadow: 0 2px 6px rgba(102, 126, 234, 0.25);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

/* Modern Footer Styles (shared) */
.modern-footer {
  background: #1a202c;
  color: #cbd5e0;
  padding: 60px 0 30px;
}

.modern-footer .container {
  max-width: 1200px;
}

.footer-legal {
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #a0aec0;
}

.footer-legal strong {
  color: #cbd5e0;
}

.footer-disclaimer {
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #a0aec0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links {
  text-align: center;
  margin-bottom: 30px;
}

.footer-link {
  color: #cbd5e0;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
  display: inline-block;
  margin: 5px 0;
}

.footer-link:hover {
  color: white;
}

.footer-policy-links {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #2d3748;
}

.footer-policy-link {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
  display: inline-block;
  margin: 5px 0;
}

.footer-policy-link:hover {
  color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 991px) {
  .policy-content {
    padding: 40px 30px;
  }

  .policy-page-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }
}

@media (max-width: 575px) {
  .policy-page-section {
    padding: 80px 0;
  }

  .policy-content {
    padding: 30px 20px;
  }

  .policy-page-title {
    font-size: 1.75rem;
  }

  .policy-text h4 {
    font-size: 1.5rem;
  }

  .policy-text h5 {
    font-size: 1.125rem;
  }
}
