/* ============================================================
   Privacy Policy & Terms — The Fertilife
   Font: Playfair Display (headings) + Poppins (body)
   ============================================================ */

:root {
  --pp-primary:       #e05699;
  --pp-primary-dark:  #c8476a;
  --pp-primary-soft:  #fff4f8;
  --pp-primary-light: #fce8f3;
  --pp-text-dark:     #1a202c;
  --pp-text-muted:    #666;
  --pp-font-heading:  var(--fl-font-family);
  --pp-font-body:     var(--fl-font-family);
  --pp-max-width:     1200px;
}

.pp-page {
  font-family: var(--pp-font-body);
  color: var(--pp-text-muted);
}
.pp-page * {
  box-sizing: border-box;
}

.pp-page h1, .pp-page h2, .pp-page h3, .pp-page h4 {
  font-family: var(--pp-font-heading);
  color: var(--pp-text-dark);
}

/* ---------- Hero Banner ---------- */
.pp-hero {
  background: linear-gradient(135deg, #fffcfd 0%, #ffeaf1 100%);
  padding: 60px 0;
  overflow: hidden;
}
.pp-hero-container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.pp-hero-left {
  flex: 1;
}
.pp-hero-breadcrumb {
  font-size: 13px;
  color: var(--pp-text-muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pp-hero-breadcrumb a {
  color: var(--pp-text-dark);
  text-decoration: none;
}
.pp-hero-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--pp-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pp-hero-title {
  font-family: var(--pp-font-heading);
  font-weight: 700;
  font-size: 46px;
  color: var(--pp-text-dark);
  line-height: 1.1;
  margin: 0 0 20px;
}
.pp-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.pp-divider .line {
  width: 40px;
  height: 1px;
  background: var(--pp-primary);
  opacity: 0.6;
}
.pp-divider .heart {
  color: var(--pp-primary);
  font-size: 12px;
}
.pp-hero-text {
  font-size: 15px;
  line-height: 1.6;
  max-width: 450px;
}

.pp-hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.pp-hero-img-wrapper {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(224, 86, 153, 0.15);
  background: #ffffff;
  aspect-ratio: 4/3;
}
.pp-hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Tabs Navigation ---------- */
.pp-tabs-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.pp-tabs {
  display: flex;
  width: 100%;
  background: var(--pp-primary-soft);
  border-radius: 8px;
  padding: 0;
}
.pp-tab {
  flex: 1;
  justify-content: center;
  padding: 20px 32px;
  font-size: 15px;
  font-weight: 600;
  color: var(--pp-text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-top: 3px solid transparent;
}
.pp-tab i {
  color: var(--pp-text-muted);
}
.pp-tab.active {
  background: #ffffff;
  border-top: 3px solid var(--pp-primary);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  border-radius: 8px;
}
.pp-tab.active i {
  color: var(--pp-primary);
}
.pp-tab:hover:not(.active) {
  background: rgba(255,255,255,0.5);
}

/* ---------- Content Sections ---------- */
.pp-section {
  padding: 60px 0;
  background: #ffffff;
}
.pp-section-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px;
}
.pp-section-intro {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 900px;
}

/* Privacy List */
.pp-list {
  display: flex;
  flex-direction: column;
}
.pp-list-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid #f0f0f0;
}
.pp-list-item:last-child {
  border-bottom: none;
}
.pp-list-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--pp-primary-soft);
  color: var(--pp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 5px;
}
.pp-list-content {
  flex: 1;
}
.pp-list-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
}
.pp-list-content p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Terms Grid */
.pp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pp-grid-item {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pp-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.pp-grid-icon {
  width: 48px;
  height: 48px;
  background: var(--pp-primary-soft);
  color: var(--pp-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.pp-grid-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.3;
}
.pp-grid-item p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* ---------- Bottom CTA ---------- */
.pp-cta {
  background: var(--pp-primary-soft);
  border-radius: 16px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0 60px;
  gap: 40px;
}
.pp-cta-img {
  flex: 0 0 150px;
  display: flex;
  align-items: flex-end;
  align-self: flex-end;
}
.pp-cta-img img {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: -10px;
}
.pp-cta-content {
  flex: 1;
  padding: 40px 0;
}
.pp-cta-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
}
.pp-cta-content p {
  font-size: 14px;
  margin: 0;
}
.pp-cta-buttons {
  display: flex;
  gap: 16px;
  padding: 40px 0;
}
.pp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.pp-btn-primary {
  background: var(--pp-primary);
  color: #fff;
  border: 1px solid var(--pp-primary);
}
.pp-btn-primary:hover {
  background: var(--pp-primary-dark);
  color: #fff;
}
.pp-btn-outline {
  background: #ffffff;
  color: var(--pp-primary);
  border: 1px solid var(--pp-primary);
}
.pp-btn-outline:hover {
  background: var(--pp-primary);
  color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .pp-hero-container { flex-direction: column; text-align: center; gap: 40px; }
  .pp-hero-text { margin: 0 auto; }
  .pp-divider { justify-content: center; }
  .pp-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-cta { flex-direction: column; text-align: center; padding: 40px; gap: 20px; }
  .pp-cta-img { align-self: center; }
  .pp-cta-img img { margin-bottom: 0; }
  .pp-cta-buttons { padding: 0; justify-content: center; }
}
@media (max-width: 767px) {
  .pp-tabs { flex-direction: column; width: 100%; }
  .pp-grid { grid-template-columns: 1fr; }
  .pp-hero-title { font-size: 36px; }
  .pp-list-item { flex-direction: column; gap: 16px; }
  .pp-cta-buttons { flex-direction: column; width: 100%; }
  .pp-btn { justify-content: center; }
}
