/* ============================================
   POLICY PAGES STYLES (Privacy, Cookie, Terms)
   ============================================ */

/* Hero Sections */
.privacy-hero-new,
.cookie-hero-new,
.terms-hero-new {
  position: relative;
  padding: 120px 0 80px;
  background: #fafafa;
  overflow: hidden;
}

.privacy-hero-background-new,
.cookie-hero-background-new,
.terms-hero-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 230, 207, 0.05) 0%, rgba(255, 214, 224, 0.05) 100%);
  pointer-events: none;
}

.privacy-hero-title-new,
.cookie-hero-title-new,
.terms-hero-title-new {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1f2e;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
}

.privacy-hero-description-new,
.cookie-hero-description-new,
.terms-hero-description-new {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.title-highlight-new {
  background: linear-gradient(135deg, #a8e6cf, #ffd6e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge-new {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(168, 230, 207, 0.2), rgba(255, 214, 224, 0.2));
  border-radius: 50px;
  color: #2d8659;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Content Sections */
.privacy-content-new,
.cookie-content-new,
.terms-content-new {
  padding: 80px 0;
  background: #ffffff;
}

.policy-content-new {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.policy-section-new {
  background: #fafafa;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(168, 230, 207, 0.2);
  transition: all 0.3s ease;
}

.policy-section-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(168, 230, 207, 0.15);
  border-color: rgba(168, 230, 207, 0.4);
}

.policy-section-header-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.policy-icon-new {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a8e6cf, #ffd6e0);
  border-radius: 12px;
  color: #1a1f2e;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.policy-section-title-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1f2e;
  margin: 0;
  font-family: var(--heading-font);
}

.policy-section-body-new {
  color: #4b5563;
  line-height: 1.8;
}

.policy-section-body-new p {
  margin-bottom: 1rem;
}

.policy-section-body-new p:last-child {
  margin-bottom: 0;
}

.policy-list-new {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.policy-list-new li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #4b5563;
  line-height: 1.7;
}

.policy-list-new li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2d8659;
  font-weight: 700;
}

.policy-contact-new {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(168, 230, 207, 0.1);
  border-radius: 12px;
  border-left: 4px solid #a8e6cf;
}

.policy-contact-new p {
  margin-bottom: 0.5rem;
}

.policy-contact-new a {
  color: #2d8659;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.policy-contact-new a:hover {
  color: #d977a6;
}

/* Thanks Page Styles */
.thanks-section-new {
  position: relative;
  padding: 120px 0 80px;
  background: #fafafa;
  overflow: hidden;
}

.thanks-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 230, 207, 0.08) 0%, rgba(255, 214, 224, 0.08) 100%);
  pointer-events: none;
}

.thanks-content-new {
  position: relative;
  z-index: 1;
}

.thanks-icon-new {
  display: flex;
  justify-content: center;
}

.thanks-icon-circle-new {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a8e6cf, #ffd6e0);
  border-radius: 50%;
  color: #1a1f2e;
  font-size: 4rem;
  box-shadow: 0 10px 40px rgba(168, 230, 207, 0.3);
  animation: pulse-success 2s ease-in-out infinite;
}

@keyframes pulse-success {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.thanks-title-new {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a1f2e;
  font-family: var(--heading-font);
}

.thanks-subtitle-new {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d8659;
}

.thanks-description-new {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.thanks-actions-new {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-thanks-primary-new,
.btn-thanks-secondary-new {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

.btn-thanks-primary-new {
  background: linear-gradient(135deg, #a8e6cf, #ffd6e0);
  color: #1a1f2e;
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.3);
}

.btn-thanks-primary-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 214, 224, 0.4);
}

.btn-thanks-secondary-new {
  background: #ffffff;
  color: #1a1f2e;
  border: 2px solid rgba(168, 230, 207, 0.3);
}

.btn-thanks-secondary-new:hover {
  background: rgba(168, 230, 207, 0.1);
  border-color: #a8e6cf;
}

/* What's Next Section */
.whats-next-new {
  padding: 80px 0;
  background: #ffffff;
}

.section-header-new {
  margin-bottom: 3rem;
}

.section-title-new {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1f2e;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.section-description-new {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.next-card-new {
  background: #fafafa;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(255, 214, 224, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 214, 224, 0.2);
}

.next-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(168, 230, 207, 0.25);
}

.next-icon-wrapper-new {
  margin-bottom: 1.5rem;
}

.icon-wrapper-new {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #1a1f2e;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.2);
}

.icon-wrapper-new.icon-green {
  background: linear-gradient(135deg, #a8e6cf, #c8e6d5);
}

.icon-wrapper-new.icon-pink {
  background: linear-gradient(135deg, #ffd6e0, #ffe5e8);
}

.icon-wrapper-new.icon-green-light {
  background: linear-gradient(135deg, #c8e6d5, #a8e6cf);
}

.next-title-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.next-text-new {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.next-link-new {
  color: #2d8659;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.next-link-new:hover {
  color: #d977a6;
  gap: 0.75rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .privacy-hero-title-new,
  .cookie-hero-title-new,
  .terms-hero-title-new,
  .thanks-title-new {
    font-size: 2.5rem;
  }
  
  .section-title-new {
    font-size: 2rem;
  }
  
  .policy-section-new {
    padding: 1.5rem;
  }
}

@media (max-width: 575px) {
  .privacy-hero-new,
  .cookie-hero-new,
  .terms-hero-new,
  .thanks-section-new {
    padding: 80px 0 60px;
  }
  
  .privacy-hero-title-new,
  .cookie-hero-title-new,
  .terms-hero-title-new,
  .thanks-title-new {
    font-size: 2rem;
  }
  
  .thanks-icon-circle-new {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }
  
  .thanks-subtitle-new {
    font-size: 1.25rem;
  }
  
  .thanks-actions-new {
    flex-direction: column;
  }
  
  .btn-thanks-primary-new,
  .btn-thanks-secondary-new {
    width: 100%;
    justify-content: center;
  }
  
  .policy-section-header-new {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .next-card-new {
    padding: 1.5rem;
  }
}

