h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-roboto);
    font-weight: 500;
    line-height: 1.3;
    color: var(--bs-gray-700);
}
.h2, h2 {
    font-size: calc(1.15rem + .9vw);
}
@media (min-width: 1200px) {
    .h2, h2,h4 {
        font-size: 1.5rem;
        font-family: var(--font-roboto) !important;
    }
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background-color: #2c3e50;
    color: white;
}

th, td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    font-weight: 600;
}

tbody tr {
    transition: background-color 0.2s;
}

tbody tr:hover {
    background-color: #f8f9fa;
}

tbody tr:nth-of-type(even) {
    background-color: #f9f9f9;
}

tbody tr:nth-of-type(even):hover {
    background-color: #f1f1f1;
}

ul {
    padding-left: 25px;
    margin: 15px 0;
}

li {
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 300;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.highlight {
    color: #2c3e50;
    font-weight: 600;
}

.note {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
}

.footer-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h4 {
        font-size: 1.3rem;
    }
    
    table {
        display: block;
        overflow-x: auto;
    }
}
/* ============================================
   RESPONSIVE TABLE - COOKIES POLICY
   ============================================ */

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #fff;
}

.cookies-table thead {
    color: #fff;
}

.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookies-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.cookies-table tbody tr:hover {
    background-color: #f8f9fa;
}

.cookies-table td {
    padding: 1rem;
    vertical-align: top;
}

.cookies-table td strong {
    color: #667eea;
    font-size: 1.05em;
}
b, strong {
  font-weight: bolder;
  font-weight: 600;
}
/* ============================================
   MOBILE RESPONSIVE (< 768px)
   ============================================ */

@media screen and (max-width: 767px) {
    .cookies-table {
        border: 0;
        box-shadow: none;
    }
    
    /* Ocultar el header original */
    .cookies-table thead {
        display: none;
    }
    
    /* Cada fila se convierte en un "card" */
    .cookies-table tbody tr {
        display: block;
        margin-bottom: 1.5rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
        background: #fff;
        overflow: hidden;
    }
    
    .cookies-table tbody tr:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }
    
    /* Cada celda ocupa toda la fila */
    .cookies-table td {
        display: block;
        text-align: left;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #f0f0f0;
        position: relative;
        padding-left: 40%;
        min-height: 3rem;
    }
    
    .cookies-table td:last-child {
        border-bottom: none;
    }
    
    /* Mostrar el label (header) antes del contenido */
    .cookies-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        top: 0;
        width: 38%;
        padding: 0.75rem 1rem;
        font-weight: 600;
        background: var(--bg-light-blue);
        color: #fff;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        display: flex;
        align-items: center;
        min-height: 3rem;
    }
    
    /* Primera celda (Cookie name) con estilo destacado */
    .cookies-table td:first-child::before {
        background: var(--bg-light-blue);
    }
    
    /* Ajustar el strong para móvil */
    .cookies-table td strong {
        font-size: 1.1em;
        display: block;
    }
    li {
      font-size: 1.0rem;
      font-weight: 300;
    }
}

/* ============================================
   TABLET (768px - 991px)
   ============================================ */

@media screen and (min-width: 768px) and (max-width: 991px) {
    .cookies-table th,
    .cookies-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .cookies-table th {
        font-size: 0.85rem;
    }
}