/* PRIVACY POLICY PAGE STYLES */

/* Privacy Header */
.privacy-header {
  padding: 8rem 0 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin-top: 80px;
}

.header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.header-content h1 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}

.last-updated {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.header-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
}

/* Table of Contents */
.table-of-contents {
  padding: 4rem 0;
  background: #fff;
}

.table-of-contents h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 3rem;
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.toc-item:hover {
  background: #fff;
  border-color: #ffe600;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.toc-number {
  background: #000;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.toc-item:hover .toc-number {
  background: #ffe600;
  color: #000;
}

.toc-title {
  font-weight: 600;
  color: #000;
  font-size: 1rem;
}

/* Privacy Content */
.privacy-content {
  padding: 4rem 0 6rem 0;
  background: #fff;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 4rem;
  scroll-margin-top: 100px;
}

.policy-section h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #ffe600;
}

.section-content h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  margin: 2rem 0 1rem 0;
}

.section-content h4 {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin: 1.5rem 0 0.5rem 0;
}

.section-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
}

.section-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.section-content li {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0.5rem;
}

.section-content a {
  color: #000;
  text-decoration: none;
  border-bottom: 2px solid #ffe600;
  transition: color 0.3s ease;
}

.section-content a:hover {
  color: #ffe600;
}

/* Info Boxes */
.info-box {
  background: #f8f9fa;
  border-left: 4px solid #ffe600;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.info-box h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #000;
}

.info-box p {
  margin-bottom: 0;
  color: #666;
}

/* Security Grid */
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.security-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.security-item h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.security-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Cookie Types */
.cookie-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.cookie-type {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.cookie-type:hover {
  border-color: #ffe600;
  background: #fff;
}

.cookie-type h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.cookie-type p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Cookie Controls */
.cookie-controls {
  background: #000;
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
}

.cookie-controls h4 {
  color: #fff;
  margin-top: 0;
}

.cookie-controls p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.cookie-settings-btn {
  background: #ffe600;
  color: #000;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cookie-settings-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* Rights Grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.right-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.right-item:hover {
  border-color: #ffe600;
  background: #fff;
  transform: translateY(-3px);
}

.right-item h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #000;
}

.right-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Rights Contact */
.rights-contact {
  background: #ffe600;
  color: #000;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
}

.rights-contact p {
  margin-bottom: 0;
  font-weight: 500;
}

.rights-contact a {
  color: #000;
  font-weight: 600;
}

/* Contact Details */
.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.contact-method {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.contact-method h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #000;
}

.contact-method p {
  margin-bottom: 0;
}

.contact-method a {
  color: #000;
  font-weight: 500;
}

/* Footer Current Policy */
.current-policy {
  color: #ffe600 !important;
  font-weight: 600;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .privacy-header {
    padding: 6rem 0 3rem 0;
    margin-top: 70px;
  }
  
  .header-content h1 {
    font-size: 2.5rem;
  }
  
  .table-of-contents {
    padding: 3rem 0;
  }
  
  .toc-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .toc-item {
    padding: 1rem;
  }
  
  .privacy-content {
    padding: 3rem 0 4rem 0;
  }
  
  .policy-section {
    margin-bottom: 3rem;
  }
  
  .policy-section h2 {
    font-size: 1.6rem;
  }
  
  .security-grid,
  .cookie-types,
  .rights-grid,
  .contact-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .header-content h1 {
    font-size: 2rem;
  }
  
  .header-description {
    font-size: 1rem;
  }
  
  .toc-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .policy-section h2 {
    font-size: 1.4rem;
  }
  
  .section-content p,
  .section-content li {
    font-size: 0.9rem;
  }
  
  .cookie-controls,
  .rights-contact {
    padding: 1rem;
  }
  
  .cookie-settings-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}