/* Privacy Policy Section */
.policy-section {
  padding: 60px 0;
  background-color: var(--white);
}

.policy-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}

.policy-header h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.policy-header h1 i {
  font-size: 2.2rem;
  color: var(--accent);
}

.policy-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
}

.last-updated {
  color: var(--text-light);
  font-size: 0.95rem;
}

.last-updated span {
  font-weight: 600;
  color: var(--primary);
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.policy-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.policy-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--primary-light);
}

.policy-card h2 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-card h2 i {
  font-size: 1.3rem;
  color: var(--accent);
}

.policy-card p {
  margin-bottom: 15px;
  color: var(--text);
  line-height: 1.7;
}

.policy-card ul {
  margin: 15px 0;
  padding-left: 20px;
}

.policy-card li {
  margin-bottom: 10px;
  color: var(--text-light);
  position: relative;
  padding-left: 15px;
}

.policy-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.policy-card li strong {
  color: var(--text);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .policy-section {
    padding: 40px 0;
  }

  .policy-header h1 {
    font-size: 2rem;
    flex-direction: column;
    gap: 10px;
  }

  .policy-header h1 i {
    font-size: 1.8rem;
  }

  .policy-card {
    padding: 20px;
  }

  .policy-card h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .policy-header h1 {
    font-size: 1.7rem;
  }

  .policy-card h2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
/* Print Button */
.print-policy-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.print-policy-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    transition: var(--transition);
}

.back-to-top-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Copy Section Button */
.copy-section-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
    transition: var(--transition);
    opacity: 0.6;
}

.copy-section-btn:hover {
    color: var(--primary);
    opacity: 1;
}

.copy-section-btn.copied {
    color: var(--accent);
}

/* Active Section Highlight */
.policy-card.active {
    border-left: 4px solid var(--accent);
    background-color: rgba(58, 123, 213, 0.03);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: white;
    padding: 15px 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--primary-light);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-accept, .cookie-decline {
    padding: 8px 15px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.cookie-accept {
    background: white;
    color: var(--primary-dark);
}

.cookie-decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-accept:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Print Styles */
@media print {
    .print-policy-btn,
    .back-to-top-btn,
    .copy-section-btn,
    .cookie-banner {
        display: none !important;
    }

    .policy-section {
        padding: 0 !important;
    }

    .policy-card {
        page-break-inside: avoid;
        break-inside: avoid;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}