/* Estilos para páginas legales */
.legal-content {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--light-color);
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
}

.legal-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-section ul {
    list-style-position: inside;
    margin: 1rem 0;
}

.legal-section ul li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: var(--text-color);
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--primary-dark);
}

.legal-section strong {
    color: var(--dark-color);
    font-weight: 600;
}

.last-update {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}

.last-update p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* Tabla para política de cookies */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    overflow-x: auto;
    display: block;
}

.cookie-table table {
    width: 100%;
    min-width: 600px;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--light-color);
    font-weight: 600;
    color: var(--dark-color);
}

.cookie-table td {
    color: var(--text-color);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Lista de derechos */
.rights-list {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.rights-list ul {
    list-style: none;
    margin: 0;
}

.rights-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.rights-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Información de contacto */
.contact-info-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.contact-info-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info-box p,
.contact-info-box a {
    color: white;
}

.contact-info-box a {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .cookie-table {
        font-size: 0.875rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}