/* ===========================
   PRIVACY HERO
=========================== */
.privacy-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff;
}

.privacy-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.privacy-hero p {
  font-size: 1rem;
  color: #a0aec0;
}

/* ===========================
   PRIVACY MAIN LAYOUT
=========================== */
.privacy-main {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

/* ===========================
   SIDEBAR
=========================== */
.privacy-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 24px;
  background: #f9fafb;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
}

.sidebar-sticky h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.sidebar-sticky ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-sticky ul li a {
  display: block;
  padding: 8px 12px;
  font-size: 0.9rem;
  color: #4a5568;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.sidebar-sticky ul li a:hover {
  color: gray;
}

/* ===========================
   PRIVACY CONTENT
=========================== */
.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.privacy-intro {
  background: #eef2ff;
  border-left: 5px solid var(--primary-color);
  border-radius: 8px;
  padding: 24px 28px;
}

.privacy-intro p {
  font-size: 0.97rem;
  color: #4a5568;
  line-height: 1.8;
  margin: 0;
}

/* ===========================
   PRIVACY SECTIONS
=========================== */

.privacy-section{
  margin-bottom: 2rem;
}

.privacy-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-number {
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--primary-color);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.privacy-section p {
  font-size: 0.97rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===========================
   PRIVACY CARDS
=========================== */
.privacy-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 16px;
  transition: box-shadow 0.2s ease;
}

.privacy-card:hover {
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.08);
}

.privacy-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.privacy-card p {
  font-size: 0.92rem;
  color: #718096;
  margin: 0;
}

/* ===========================
   PRIVACY LIST
=========================== */
.privacy-list {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.privacy-list li {
  font-size: 0.97rem;
  color: #4a5568;
  line-height: 1.7;
  padding-left: 8px;
}

.privacy-list li::marker {
  color: var(--primary-color);
}

/* ===========================
   COOKIE BADGES
=========================== */
.cookie-types {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.cookie-badge {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  background-color: whitesmoke;
}

.cookie-badge strong{
  font-size: 0.95rem;
}

/* .cookie-badge.essential {
  background: #dcfce7;
  color: #054f20;
}

.cookie-badge.analytics {
  background: #dbeafe;
  color: #2563eb;
}

.cookie-badge.preference {
  background: #fff0f0;  
  color: #B71C1C;
} */

/* ===========================
   PRIVACY HIGHLIGHT
=========================== */
.privacy-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 10px;
  padding: 18px 22px;
  margin-top: 16px;
}

.privacy-highlight span {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.privacy-highlight p {
  font-size: 0.95rem;
  color: #92400e;
  margin: 0;
  line-height: 1.7;
}

/* ===========================
   RIGHTS GRID
=========================== */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.rights-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rights-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.1);
}

.rights-card span {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}

.rights-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.rights-card p {
  font-size: 0.9rem;
  color: #718096;
  margin: 0;
  line-height: 1.6;
}

/* ===========================
   CONTACT BOX
=========================== */
.privacy-section .contact-box {
  background: #f9fafb;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.privacy-section .contact-box p {
  font-size: 0.97rem;
  color: #4a5568;
  margin: 0;
}

.privacy-section .contact-box a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.privacy-section .contact-box a:hover {
  text-decoration: underline;
} 

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .privacy-main {
    grid-template-columns: 1fr;
  }

  .privacy-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .privacy-hero h1 {
    font-size: 2rem;
  }

  .privacy-section h2 {
    font-size: 1.3rem;
  }

  .rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .privacy-hero {
    padding: 60px 16px;
  }

  .privacy-hero h1 {
    font-size: 1.7rem;
  }

  .rights-grid {
    grid-template-columns: 1fr;
  }

  .cookie-types {
    flex-direction: column;
  }
}