/*
 * @file: privacy-policy.css
 * @description: Stili specifici per la pagina Privacy Policy UCOI-UCOIM.
 *               Layout a 2 colonne con sidebar navigabile sticky, tabelle
 *               responsive, card per diritti GDPR, grid per finalità e
 *               misure di sicurezza, box informativi colorati.
 * @author: UCOI/UCOIM - Segreteria Generale
 * @last-updated: 2025-11-05
 * @version: V.1.1
 * @standards: UCOI/UCOIM Standards v3.1, Comments Standards v1.0
 * @dependencies: main.css (per variabili CSS)
 */

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-legal {
  background: linear-gradient(135deg, var(--primary-color) 0%, #004d7a 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero-legal h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.hero-legal .hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  opacity: 0.95;
}

.hero-legal .hero-meta {
  font-size: 0.95rem;
  opacity: 0.85;
  font-style: italic;
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-legal {
    padding: 3rem 0;
  }
  
  .hero-legal h1 {
    font-size: 2rem;
  }
  
  .hero-legal .hero-subtitle {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   LAYOUT PRINCIPALE - 2 COLONNE
   ========================================================================== */

.privacy-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Layout tablet */
@media (max-width: 1024px) {
  .privacy-container {
    grid-template-columns: 240px 1fr;
    gap: 2rem;
  }
}

/* Layout mobile - colonna singola */
@media (max-width: 768px) {
  .privacy-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
  }
}

/* ==========================================================================
   SIDEBAR NAVIGAZIONE
   ========================================================================== */

.privacy-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px; /* Sotto header fisso */
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color);
}

.privacy-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.privacy-index a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition-fast);
  font-size: 0.95rem;
  border-left: 3px solid transparent;
}

.privacy-index a:hover {
  background: white;
  border-left-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateX(4px);
}

.privacy-index a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Sidebar mobile - nascosta di default */
@media (max-width: 768px) {
  .sidebar-sticky {
    position: static;
    margin-bottom: 2rem;
  }
  
  .privacy-index {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .privacy-index a {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .privacy-index {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CONTENUTO PRINCIPALE
   ========================================================================== */

.privacy-content {
  max-width: 900px;
}

.privacy-section {
  margin-bottom: 4rem;
  scroll-margin-top: 120px; /* Per anchor links con header sticky */
}

.privacy-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--primary-color);
}

.privacy-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-section h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-section p {
  line-height: 1.8;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.privacy-section ul,
.privacy-section ol {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.privacy-section li {
  margin-bottom: 0.75rem;
}

.privacy-section strong {
  font-weight: 600;
  color: var(--primary-color);
}

/* Responsive typography */
@media (max-width: 768px) {
  .privacy-section h2 {
    font-size: 1.6rem;
  }
  
  .privacy-section h3 {
    font-size: 1.25rem;
  }
  
  .privacy-section h4 {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   METADATA DOCUMENTO
   ========================================================================== */

.policy-metadata {
  background: var(--bg-light);
  border-left: 4px solid var(--accent-color);
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
  border-radius: 8px;
  font-size: 0.95rem;
}

.policy-metadata p {
  margin-bottom: 0.5rem;
}

.policy-metadata p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   BOX INFORMATIVI
   ========================================================================== */

/* Info Box (blu) */
.info-box {
  display: flex;
  gap: 1.25rem;
  background: #e3f2fd;
  border-left: 4px solid #1976d2;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.info-box i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #1976d2;
}

.info-box h3,
.info-box h4 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: #1565c0;
}

.info-box p {
  margin-bottom: 0.75rem;
}

.info-box p:last-child {
  margin-bottom: 0;
}

.info-box ul {
  margin-left: 1.5rem;
  margin-bottom: 0;
}

/* Warning Box (giallo/arancio) */
.warning-box {
  display: flex;
  gap: 1.25rem;
  background: #fff3e0;
  border-left: 4px solid #f57c00;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.warning-box i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #f57c00;
}

.warning-box p {
  margin-bottom: 0;
  color: #e65100;
}

.warning-box strong {
  color: #e65100;
}

/* Data Box (grigio chiaro) */
.data-box {
  background: var(--bg-light);
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.data-box h3 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1.5rem;
}

/* Responsive boxes */
@media (max-width: 768px) {
  .info-box,
  .warning-box {
    flex-direction: column;
    gap: 1rem;
  }
  
  .data-box {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   CONTACT GRID
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  margin-top: 0.25rem;
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 0.5rem 0;
}

.contact-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Responsive contact grid */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ==========================================================================
   TABELLE
   ========================================================================== */

.data-table,
.legal-basis-table,
.retention-table,
.cookie-details-table {
  width: 100%;
  margin: 2rem 0;
  overflow-x: auto;
}

.data-table table,
.legal-basis-table table,
.retention-table table,
.cookie-details-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.data-table thead,
.legal-basis-table thead,
.retention-table thead,
.cookie-details-table thead {
  background: var(--primary-color);
  color: white;
}

.data-table th,
.legal-basis-table th,
.retention-table th,
.cookie-details-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.data-table td,
.legal-basis-table td,
.retention-table td,
.cookie-details-table td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.95rem;
}

.data-table tbody tr:last-child td,
.legal-basis-table tbody tr:last-child td,
.retention-table tbody tr:last-child td,
.cookie-details-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover,
.legal-basis-table tbody tr:hover,
.retention-table tbody tr:hover,
.cookie-details-table tbody tr:hover {
  background: var(--bg-light);
}

/* Responsive tabelle - scroll orizzontale */
@media (max-width: 768px) {
  .data-table,
  .legal-basis-table,
  .retention-table,
  .cookie-details-table {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  
  .data-table table,
  .legal-basis-table table,
  .retention-table table,
  .cookie-details-table table {
    min-width: 600px;
  }
  
  .data-table th,
  .legal-basis-table th,
  .retention-table th,
  .cookie-details-table th,
  .data-table td,
  .legal-basis-table td,
  .retention-table td,
  .cookie-details-table td {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   COOKIE TYPES
   ========================================================================== */

.cookie-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.cookie-type {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem;
  border: 2px solid #e0e0e0;
  transition: var(--transition-normal);
}

.cookie-type:hover {
  border-color: var(--primary-color);
  transform: var(--hover-lift-small);
  box-shadow: var(--shadow-md);
}

.cookie-type h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.cookie-type h4 i {
  width: 20px;
  height: 20px;
}

.cookie-type p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive cookie types */
@media (max-width: 1024px) {
  .cookie-types {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   FINALITÀ GRID
   ========================================================================== */

.finalita-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.finalita-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  transition: var(--transition-normal);
  text-align: center;
}

.finalita-card:hover {
  border-color: var(--primary-color);
  transform: var(--hover-lift-small);
  box-shadow: var(--shadow-lg);
}

.finalita-card i {
  width: 40px;
  height: 40px;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.finalita-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.75rem 0;
}

.finalita-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.finalita-card .badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Responsive finalità */
@media (max-width: 1024px) {
  .finalita-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .finalita-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   SECURITY MEASURES
   ========================================================================== */

.security-measures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.measure {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid var(--accent-color);
}

.measure i {
  width: 32px;
  height: 32px;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.measure h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.75rem 0;
}

.measure p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: var(--text-muted);
}

/* Responsive security measures */
@media (max-width: 1024px) {
  .security-measures {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .security-measures {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   RIGHTS GRID - DIRITTI GDPR
   ========================================================================== */

.rights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.right-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  transition: var(--transition-normal);
  text-align: center;
}

.right-card:hover {
  border-color: var(--primary-color);
  transform: var(--hover-lift-small);
  box-shadow: var(--shadow-lg);
}

.right-card i {
  width: 40px;
  height: 40px;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.right-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
}

.right-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.right-card p:last-child {
  margin-bottom: 0;
}

.right-card strong {
  display: block;
  color: var(--primary-color);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

/* Responsive rights grid */
@media (max-width: 1200px) {
  .rights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .rights-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   EXERCISE RIGHTS BOX
   ========================================================================== */

.exercise-rights-box {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.exercise-rights-box h4 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.method {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid #e0e0e0;
  transition: var(--transition-normal);
}

.method:hover {
  border-color: var(--primary-color);
  transform: var(--hover-lift-small);
}

.method i {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.method h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.75rem 0;
}

.method p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.method p:last-child {
  margin-bottom: 0;
}

.method a {
  color: var(--primary-color);
  text-decoration: none;
  word-break: break-word;
}

.method a:hover {
  text-decoration: underline;
}

/* Responsive contact methods */
@media (max-width: 900px) {
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   RECIPIENT CARD
   ========================================================================== */

.recipient-card {
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.recipient-card h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1rem;
}

.recipient-card h4 i {
  width: 24px;
  height: 24px;
}

.recipient-card p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.recipient-card p:last-child {
  margin-bottom: 0;
}

.recipient-card a {
  color: var(--primary-color);
  text-decoration: none;
  word-break: break-word;
}

.recipient-card a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   COOKIE MANAGEMENT
   ========================================================================== */

.cookie-management {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.cookie-management h4 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1rem;
}

.cookie-management ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-left: 0;
  list-style: none;
}

.cookie-management li {
  margin-bottom: 0;
}

.cookie-management a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 8px;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

.cookie-management a:hover {
  transform: var(--hover-lift-small);
  box-shadow: var(--shadow-sm);
}

/* Responsive cookie management */
@media (max-width: 768px) {
  .cookie-management {
    padding: 1.5rem;
  }
  
  .cookie-management ul {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   VERSION HISTORY
   ========================================================================== */

.version-history {
  margin: 2rem 0;
}

.version {
  background: var(--bg-light);
  border-left: 4px solid var(--accent-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.version h4 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1rem;
}

.version p {
  margin-bottom: 0.75rem;
}

.version ul {
  margin-bottom: 0;
}

/* ==========================================================================
   CONTACT FINAL BOX
   ========================================================================== */

.contact-final-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, #004d7a 100%);
  color: white;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.contact-final-box h3 {
  color: white;
  margin-top: 0;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-final-box .contact-grid {
  gap: 2rem;
}

.contact-final-box .contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-final-box .contact-detail i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: white;
  margin-top: 0.25rem;
}

.contact-final-box h4 {
  color: white;
  margin: 0 0 0.5rem 0;
  font-size: 1.05rem;
}

.contact-final-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
}

.contact-final-box a {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

.contact-final-box a:hover {
  border-bottom-color: white;
}

/* Responsive contact final */
@media (max-width: 768px) {
  .contact-final-box {
    padding: 1.5rem;
  }
  
  .contact-final-box .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   AUTHORITY BOX
   ========================================================================== */

.authority-box {
  background: var(--bg-light);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.authority-box h4 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.authority-contacts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.authority-contacts li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.authority-contacts li:last-child {
  border-bottom: none;
}

.authority-contacts i {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--primary-color);
}

.authority-contacts strong {
  min-width: 100px;
  color: var(--primary-color);
}

.authority-contacts a {
  color: var(--text-dark);
  text-decoration: none;
  word-break: break-word;
}

.authority-contacts a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Responsive authority */
@media (max-width: 768px) {
  .authority-contacts li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .authority-contacts strong {
    min-width: auto;
  }
}

/* ==========================================================================
   DOCUMENT FOOTER
   ========================================================================== */

.document-footer {
  background: var(--bg-light);
  border-top: 3px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 4rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.document-footer p {
  margin-bottom: 0.5rem;
}

.document-footer p:last-child {
  margin-bottom: 0;
}

.document-footer strong {
  color: var(--text-dark);
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

/* Focus visibile su tutti gli elementi interattivi */
.privacy-content a:focus,
.privacy-index a:focus,
.contact-methods a:focus,
.authority-contacts a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
  .privacy-sidebar,
  .hero-legal,
  .site-header,
  .site-footer {
    display: none;
  }
  
  .privacy-container {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  
  .privacy-section {
    page-break-inside: avoid;
  }
  
  .privacy-section h2 {
    page-break-after: avoid;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
  }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

/* Nota privacy evidenziata */
.note-privacy {
  background: #e8f5e9;
  border-left: 4px solid #4caf50;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
  font-size: 0.95rem;
}

.note-privacy strong {
  color: #2e7d32;
}

/* ==========================================================================
   CHANGELOG
   ========================================================================== */
/*
 * v1.1 - 2025-11-05
 * - Aggiunto stile .note-privacy per evidenziare note su font self-hosted
 * - Migliorie estetiche info-box per servizi esterni
 *
 * v1.0 - 2025-11-05
 * - Prima versione CSS privacy policy
 * - Layout 2 colonne con sidebar sticky
 * - Grid responsive per diritti GDPR (4-3-2-1 colonne)
 * - Grid finalità e security measures (3-2-1 colonne)
 * - Tabelle responsive con scroll orizzontale mobile
 * - Box informativi colorati (info, warning, data)
 * - Contact grids responsive
 * - Cookie types cards
 * - Version history styling
 * - Authority box con contatti Garante
 * - Document footer
 * - Accessibilità: focus visibile, screen reader
 * - Print styles
 * - File audit completed
 */
